summaryrefslogtreecommitdiff
path: root/src/libnma/tests/cert-chooser.c
blob: 569af5b919f29b0d072b8e1b0675441dfd29c87d (plain)
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
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public License as
 * published by the ree Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Copyright 2019 Red Hat, Inc.
 */

#include "nm-default.h"

#include <gtk/gtk.h>
#include "nma-cert-chooser.h"

int
main (int argc, char *argv[])
{
	GtkWidget *dialog;
	GtkBox *content;
	GtkWidget *widget;

#if GTK_CHECK_VERSION(3,90,0)
	gtk_init ();
#else
	gtk_init (&argc, &argv);
#endif

	dialog = gtk_dialog_new_with_buttons ("NMACertChooser test",
	                                      NULL, GTK_DIALOG_MODAL,
	                                      "Dismiss",  GTK_RESPONSE_DELETE_EVENT,
	                                      NULL);
	content = GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog)));
#if GTK_CHECK_VERSION(3,90,0)
	gtk_box_set_spacing (content, 6);
#endif

	widget = nma_cert_chooser_new ("Any", 0);
	gtk_widget_show (widget);
#if GTK_CHECK_VERSION(3,90,0)
	gtk_box_pack_start (content, widget);
#else
	gtk_box_pack_start (content, widget, TRUE, TRUE, 6);
#endif

	widget = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
	gtk_widget_show (widget);
#if GTK_CHECK_VERSION(3,90,0)
	gtk_box_pack_start (content, widget);
#else
	gtk_box_pack_start (content, widget, TRUE, TRUE, 6);
#endif

	widget = nma_cert_chooser_new ("FLAG_PASSWORDS", NMA_CERT_CHOOSER_FLAG_PASSWORDS);
	nma_cert_chooser_set_cert (NMA_CERT_CHOOSER (widget),
	                           "pkcs11:object=praise;type=satan",
	                           NM_SETTING_802_1X_CK_SCHEME_PKCS11);
	nma_cert_chooser_set_key_uri (NMA_CERT_CHOOSER (widget),
	                              "pkcs11:object=worship;type=doom");
	gtk_widget_show (widget);
#if GTK_CHECK_VERSION(3,90,0)
	gtk_box_pack_start (content, widget);
#else
	gtk_box_pack_start (content, widget, TRUE, TRUE, 6);
#endif

	widget = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
	gtk_widget_show (widget);
#if GTK_CHECK_VERSION(3,90,0)
	gtk_box_pack_start (content, widget);
#else
	gtk_box_pack_start (content, widget, TRUE, TRUE, 6);
#endif

	widget = nma_cert_chooser_new ("FLAG_CERT", NMA_CERT_CHOOSER_FLAG_CERT);
	gtk_widget_show (widget);
#if GTK_CHECK_VERSION(3,90,0)
	gtk_box_pack_start (content, widget);
#else
	gtk_box_pack_start (content, widget, TRUE, TRUE, 6);
#endif

	widget = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
	gtk_widget_show (widget);
#if GTK_CHECK_VERSION(3,90,0)
	gtk_box_pack_start (content, widget);
#else
	gtk_box_pack_start (content, widget, TRUE, TRUE, 6);
#endif

	widget = nma_cert_chooser_new ("FLAG_PEM", NMA_CERT_CHOOSER_FLAG_PEM);
	gtk_widget_show (widget);
#if GTK_CHECK_VERSION(3,90,0)
	gtk_box_pack_start (content, widget);
#else
	gtk_box_pack_start (content, widget, TRUE, TRUE, 6);
#endif

	gtk_dialog_run (GTK_DIALOG (dialog));
}