mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-10-31 11:36:18 +01:00
88 lines
2.9 KiB
C
88 lines
2.9 KiB
C
|
/*
|
||
|
* 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 <glib.h>
|
||
|
#include <glib/gstdio.h>
|
||
|
|
||
|
void
|
||
|
create_fake_snapctl (const char *path,
|
||
|
const char *supported_op)
|
||
|
{
|
||
|
GError *error = NULL;
|
||
|
char *snapctl_content;
|
||
|
char *snapctl;
|
||
|
|
||
|
snapctl = g_build_filename (path, "snapctl", NULL);
|
||
|
snapctl_content = g_strdup_printf ("#!/bin/sh\n" \
|
||
|
"[ \"$1\" != 'is-connected' ] && exit 2\n"
|
||
|
"[ -z \"$2\" ] && exit 3\n"
|
||
|
"[ -n \"$3\" ] && exit 4\n"
|
||
|
"case \"$2\" in\n"
|
||
|
" %s) exit 0;;\n"
|
||
|
" *) exit 1;;\n"
|
||
|
"esac\n",
|
||
|
supported_op ? supported_op : "<invalid>");
|
||
|
|
||
|
g_file_set_contents (snapctl, snapctl_content, -1, &error);
|
||
|
g_assert_no_error (error);
|
||
|
g_assert_cmpint (g_chmod (snapctl, 0500), ==, 0);
|
||
|
|
||
|
g_test_message ("Created snapctl in %s", snapctl);
|
||
|
|
||
|
g_clear_error (&error);
|
||
|
g_free (snapctl_content);
|
||
|
g_free (snapctl);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
create_fake_snap_yaml (const char *snap_path,
|
||
|
gboolean is_classic)
|
||
|
{
|
||
|
char *meta_path;
|
||
|
char *yaml_path;
|
||
|
char *yaml_contents;
|
||
|
|
||
|
g_assert_nonnull (snap_path);
|
||
|
|
||
|
yaml_contents = g_strconcat ("name: glib-test-portal-support\n"
|
||
|
"title: GLib Portal Support Test\n"
|
||
|
"version: 2.76\n"
|
||
|
"summary: Test it works\n",
|
||
|
is_classic ?
|
||
|
"confinement: classic\n" : NULL, NULL);
|
||
|
|
||
|
meta_path = g_build_filename (snap_path, "meta", NULL);
|
||
|
g_assert_cmpint (g_mkdir_with_parents (meta_path, 0700), ==, 0);
|
||
|
|
||
|
yaml_path = g_build_filename (meta_path, "snap.yaml", NULL);
|
||
|
g_file_set_contents (yaml_path, yaml_contents, -1, NULL);
|
||
|
|
||
|
g_test_message ("Created snap.yaml in %s", yaml_path);
|
||
|
|
||
|
g_free (meta_path);
|
||
|
g_free (yaml_path);
|
||
|
g_free (yaml_contents);
|
||
|
}
|