File: portal-support-snap-classic.c

package info (click to toggle)
gobject-introspection 1.86.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 72,464 kB
  • sloc: ansic: 562,805; python: 23,750; xml: 16,240; perl: 1,878; yacc: 1,720; sh: 1,139; lex: 513; cpp: 487; makefile: 197; javascript: 15; lisp: 1
file content (122 lines) | stat: -rw-r--r-- 3,676 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
 * GIO - GLib Input, Output and Streaming Library
 *
 * Copyright (C) 2022 Canonical Ltd.
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General
 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
 *
 * Author: Marco Trevisan <marco.trevisan@canonical.com>
 */

#include "portal-support-utils.h"

#include "../gportalsupport.h"
#include <gio/gio.h>

typedef struct
{
  char *old_path;
  char *old_snap;

  const char *bin_path;
  const char *snap_path;
} SetupData;

static void
tests_setup (SetupData *setup_data,
             gconstpointer data)
{
  setup_data->old_path = g_strdup (g_getenv ("PATH"));
  setup_data->old_snap = g_strdup (g_getenv ("SNAP"));

  setup_data->bin_path = g_get_user_runtime_dir ();
  setup_data->snap_path = g_getenv ("G_TEST_TMPDIR");

  g_assert_nonnull (setup_data->bin_path);
  g_assert_nonnull (setup_data->snap_path);

  g_setenv ("PATH", setup_data->bin_path, TRUE);
  g_setenv ("SNAP", setup_data->snap_path, TRUE);
}

static void
tests_teardown (SetupData *setup_data,
                gconstpointer data)
{
  if (setup_data->old_path)
    g_setenv ("PATH", setup_data->old_path, TRUE);
  else
    g_unsetenv ("PATH");

  if (setup_data->old_snap)
    g_setenv ("SNAP", setup_data->old_snap, TRUE);
  else
    g_unsetenv ("SNAP");

  cleanup_snapfiles (setup_data->snap_path);
  cleanup_snapfiles (setup_data->bin_path);

  g_clear_pointer (&setup_data->old_path, g_free);
  g_clear_pointer (&setup_data->old_snap, g_free);
}

static void
test_portal_support_snap_no_snapctl (SetupData *setup,
                                     gconstpointer data)
{
  g_assert_false (glib_should_use_portal ());
  g_assert_true (glib_network_available_in_sandbox ());
  g_assert_true (glib_has_dconf_access_in_sandbox ());
}

static void
test_portal_support_snap_none (SetupData *setup,
                               gconstpointer data)
{
  create_fake_snap_yaml (setup->snap_path, TRUE);
  create_fake_snapctl (setup->bin_path, NULL);

  g_assert_false (glib_should_use_portal ());
  g_assert_true (glib_network_available_in_sandbox ());
  g_assert_true (glib_has_dconf_access_in_sandbox ());
}

static void
test_portal_support_snap_all (SetupData *setup,
                              gconstpointer data)
{
  create_fake_snap_yaml (setup->snap_path, TRUE);
  create_fake_snapctl (setup->bin_path, "desktop|network-status|gsettings");

  g_assert_false (glib_should_use_portal ());
  g_assert_true (glib_network_available_in_sandbox ());
  g_assert_true (glib_has_dconf_access_in_sandbox ());
}

int
main (int argc, char **argv)
{
  g_test_init (&argc, &argv, G_TEST_OPTION_ISOLATE_DIRS, NULL);

  g_test_add ("/portal-support/snap-classic/no-snapctl", SetupData, NULL,
    tests_setup, test_portal_support_snap_no_snapctl, tests_teardown);
  g_test_add ("/portal-support/snap-classic/none", SetupData, NULL,
    tests_setup, test_portal_support_snap_none, tests_teardown);
  g_test_add ("/portal-support/snap-classic/all", SetupData, NULL,
    tests_setup, test_portal_support_snap_all, tests_teardown);

  return g_test_run ();
}