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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
#include <gio/gio.h>
static void
test_exact (void)
{
const char *exact_matches[] = {
"*",
"a::*",
"a::*,b::*",
"a::a,a::b",
"a::a,a::b,b::*"
};
GFileAttributeMatcher *matcher;
char *s;
guint i;
for (i = 0; i < G_N_ELEMENTS (exact_matches); i++)
{
matcher = g_file_attribute_matcher_new (exact_matches[i]);
s = g_file_attribute_matcher_to_string (matcher);
g_assert_cmpstr (exact_matches[i], ==, s);
g_free (s);
g_file_attribute_matcher_unref (matcher);
}
}
static void
test_equality (void)
{
struct {
const char *expected;
const char *actual;
} equals[] = {
/* star makes everything else go away */
{ "*", "*,*" },
{ "*", "*,a::*" },
{ "*", "*,a::b" },
{ "*", "a::*,*" },
{ "*", "a::b,*" },
{ "*", "a::b,*,a::*" },
/* a::* makes a::<anything> go away */
{ "a::*", "a::*,a::*" },
{ "a::*", "a::*,a::b" },
{ "a::*", "a::b,a::*" },
{ "a::*", "a::b,a::*,a::c" },
/* a::b does not allow duplicates */
{ "a::b", "a::b,a::b" },
{ "a::b,a::c", "a::b,a::c,a::b" },
/* stuff gets ordered in registration order */
{ "a::b,a::c", "a::c,a::b" },
{ "a::*,b::*", "b::*,a::*" },
};
GFileAttributeMatcher *matcher;
char *s;
guint i;
for (i = 0; i < G_N_ELEMENTS (equals); i++)
{
matcher = g_file_attribute_matcher_new (equals[i].actual);
s = g_file_attribute_matcher_to_string (matcher);
g_assert_cmpstr (equals[i].expected, ==, s);
g_free (s);
g_file_attribute_matcher_unref (matcher);
}
}
static void
test_subtract (void)
{
struct {
const char *attributes;
const char *subtract;
const char *result;
} subtractions[] = {
/* * subtracts everything */
{ "*", "*", NULL },
{ "a::*", "*", NULL },
{ "a::b", "*", NULL },
{ "a::b,a::c", "*", NULL },
{ "a::*,b::*", "*", NULL },
{ "a::*,b::c", "*", NULL },
{ "a::b,b::*", "*", NULL },
{ "a::b,b::c", "*", NULL },
{ "a::b,a::c,b::*", "*", NULL },
{ "a::b,a::c,b::c", "*", NULL },
/* a::* subtracts all a's */
{ "*", "a::*", "*" },
{ "a::*", "a::*", NULL },
{ "a::b", "a::*", NULL },
{ "a::b,a::c", "a::*", NULL },
{ "a::*,b::*", "a::*", "b::*" },
{ "a::*,b::c", "a::*", "b::c" },
{ "a::b,b::*", "a::*", "b::*" },
{ "a::b,b::c", "a::*", "b::c" },
{ "a::b,a::c,b::*", "a::*", "b::*" },
{ "a::b,a::c,b::c", "a::*", "b::c" },
/* a::b subtracts exactly that */
{ "*", "a::b", "*" },
{ "a::*", "a::b", "a::*" },
{ "a::b", "a::b", NULL },
{ "a::b,a::c", "a::b", "a::c" },
{ "a::*,b::*", "a::b", "a::*,b::*" },
{ "a::*,b::c", "a::b", "a::*,b::c" },
{ "a::b,b::*", "a::b", "b::*" },
{ "a::b,b::c", "a::b", "b::c" },
{ "a::b,a::c,b::*", "a::b", "a::c,b::*" },
{ "a::b,a::c,b::c", "a::b", "a::c,b::c" },
/* a::b,b::* subtracts both of those */
{ "*", "a::b,b::*", "*" },
{ "a::*", "a::b,b::*", "a::*" },
{ "a::b", "a::b,b::*", NULL },
{ "a::b,a::c", "a::b,b::*", "a::c" },
{ "a::*,b::*", "a::b,b::*", "a::*" },
{ "a::*,b::c", "a::b,b::*", "a::*" },
{ "a::b,b::*", "a::b,b::*", NULL },
{ "a::b,b::c", "a::b,b::*", NULL },
{ "a::b,a::c,b::*", "a::b,b::*", "a::c" },
{ "a::b,a::c,b::c", "a::b,b::*", "a::c" },
/* a::b,b::c should work, too */
{ "*", "a::b,b::c", "*" },
{ "a::*", "a::b,b::c", "a::*" },
{ "a::b", "a::b,b::c", NULL },
{ "a::b,a::c", "a::b,b::c", "a::c" },
{ "a::*,b::*", "a::b,b::c", "a::*,b::*" },
{ "a::*,b::c", "a::b,b::c", "a::*" },
{ "a::b,b::*", "a::b,b::c", "b::*" },
{ "a::b,b::c", "a::b,b::c", NULL },
{ "a::b,a::c,b::*", "a::b,b::c", "a::c,b::*" },
{ "a::b,a::c,b::c", "a::b,b::c", "a::c" },
};
GFileAttributeMatcher *matcher, *subtract, *result;
char *s;
guint i;
for (i = 0; i < G_N_ELEMENTS (subtractions); i++)
{
matcher = g_file_attribute_matcher_new (subtractions[i].attributes);
subtract = g_file_attribute_matcher_new (subtractions[i].subtract);
result = g_file_attribute_matcher_subtract (matcher, subtract);
s = g_file_attribute_matcher_to_string (result);
g_assert_cmpstr (subtractions[i].result, ==, s);
g_free (s);
g_file_attribute_matcher_unref (matcher);
g_file_attribute_matcher_unref (subtract);
g_file_attribute_matcher_unref (result);
}
}
int
main (int argc, char *argv[])
{
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/fileattributematcher/exact", test_exact);
g_test_add_func ("/fileattributematcher/equality", test_equality);
g_test_add_func ("/fileattributematcher/subtract", test_subtract);
return g_test_run ();
}
|