summaryrefslogtreecommitdiffstats
path: root/src/tests/keywords/if-regex-match
blob: 458e4551b1f2b307e171e2895c213ecdb908a9ef (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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# PRE: if
#
update request {
	Tmp-Integer-0 := '123456789'
}

# Non matching on attribute ref
if (User-Name !~ /^([0-9])_([0-9])?_([0-9]*)_([0-9]+)_([^_])_(6)_([7-8])%{Tmp-String-0}/) {
	update reply {
		Filter-Id += 'Fail 0'
	}
}

# Matching on xlat expanded value
if ("%{User-Name}" !~ /^([0-9])_([0-9])?_([0-9]*)_([0-9]+)_([^_])_(6)_([7-8])%{Tmp-String-0}/) {
	update reply {
		Filter-Id += 'Fail 1'
	}
}

# Matching on attribute ref with capture groups
if (User-Name =~ /^([0-9])_([0-9])?_([0-9]*)_([0-9]+)_([^_])_(6)_([7-8])%{Tmp-String-0}/) {
	# Test all the capture groups
	update {
		reply:User-Name := "%{7}_%{6}_%{5}_%{4}_%{3}_%{2}_%{1}_%{0}"
	}
}
else {
	update reply {
		Filter-Id += 'Fail 2'
	}
}

# Checking capture groups are cleared out correctly
if (User-Name =~ /^([0-9])_%{Tmp-String-0}/) {
	if ("%{0}%{1}%{2}%{3}%{4}%{5}%{6}%{7}" != '1_1') {
		update reply {
			Filter-Id += 'Fail 3'
		}
	}
}
else {
	update reply {
		Filter-Id += 'Fail 3.5'
	}
}

# Checking capture groups are cleared out correctly when there are no matches
if (User-Name =~ /^.%{Tmp-String-0}/) {
	if ("%{0}%{1}%{2}%{3}%{4}%{5}%{6}%{7}" != '1') {
		update reply {
			Filter-Id += 'Fail 4'
		}
	}
}
else {
	update reply {
		Filter-Id += 'Fail 4.5'
	}
}

# Checking full capture group range
if ('a_b_c_d_e_f_g_h_i_j_k_l_m_n_o_p_q_r_s_t_u_v_w_x_y_z_A_B_C_D_E_F' =~ /^(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)$/) {
	if ("%{0}%{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}" != 'a_b_c_d_e_f_g_h_i_j_k_l_m_n_o_p_q_r_s_t_u_v_w_x_y_z_A_B_C_D_E_FabcdefghijklmnopqrstuvwxyzABCDEF') {
		update reply {
			Filter-Id += 'Fail 6'
		}
	}
}
else {
	update reply {
		Filter-Id += 'Fail 6.5'
	}
}

# Checking full capture group overun
if ('a_b_c_d_e_f_g_h_i_j_k_l_m_n_o_p_q_r_s_t_u_v_w_x_y_z_A_B_C_D_E_F_G' =~ /^(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)_(.)$/) {
	if ("%{0}%{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}" != 'a_b_c_d_e_f_g_h_i_j_k_l_m_n_o_p_q_r_s_t_u_v_w_x_y_z_A_B_C_D_E_F_GabcdefghijklmnopqrstuvwxyzABCDEF') {
		update reply {
			Filter-Id += 'Fail 7'
		}
	}
}
else {
	update reply {
		Filter-Id += 'Fail 7.5'
	}
}

# uncompiled - ref - insensitive
if (Calling-Station-Id !~ /:roamyroam%{Tmp-String-0}$/i) {
	update reply {
		Filter-Id += 'Fail 8'
	}
}

# uncompiled - expansion - insensitive
if ("%{Calling-Station-Id}" !~ /:roamyroam%{Tmp-String-0}$/i) {
	update reply {
		Filter-Id += 'Fail 9'
	}
}

# uncompiled - enum - ref - insensitive
if (Service-Type !~ /^framed-user%{Tmp-String-0}$/i) {
	update reply {
		Filter-Id += 'Fail 10'
	}
}

# uncompiled - enum - expansion - insensitive
if ("%{Service-Type}" !~ /^framed-user%{Tmp-String-0}$/i) {
	update reply {
		Filter-Id += 'Fail 11'
	}
}

# uncompiled - enum - ref
if (Service-Type =~ /^framed-user%{Tmp-String-0}$/) {
	update reply {
		Filter-Id += 'Fail 12'
	}
}

# uncompiled - integer - ref
if (Tmp-Integer-0 !~ /%{Tmp-Integer-0}/) {
	update reply {
		Filter-Id += 'Fail 13'
	}
}

update request {
	Tmp-String-0 := "foo\nbar"
}

# uncompiled - ref - multiline
if (&Tmp-String-0 !~ /^foo$%{Tmp-String-8}/m) {
	update reply {
		Filter-Id += 'Fail 14'
	}
}

# uncompiled - ref - non-multiline
if (&Tmp-String-0 =~ /^foo$%{Tmp-String-8}/) {
	update reply {
		Filter-Id += 'Fail 15'
	}
}

# uncompiled - ref - non-multiline
if (&Tmp-String-0 !~ /^foo\nbar%{Tmp-String-8}$/) {
	update reply {
		Filter-Id += 'Fail 16'
	}
}

# uncompiled - ref - multiline
if (&Tmp-String-0 !~ /^bar%{Tmp-String-8}$/m) {
	update reply {
		Filter-Id += 'Fail 17'
	}
}

# uncompiled - ref - multiline - sensitive
if (&Tmp-String-0 =~ /^BAR%{Tmp-String-8}$/m) {
	update reply {
		Filter-Id += 'Fail 18'
	}
}

# uncompiled - ref - multiline - insensitive
if (&Tmp-String-0 !~ /^BAR%{Tmp-String-8}$/mi) {
	update reply {
		Filter-Id += 'Fail 19'
	}
}

# uncompiled - ref - multiline - insensitive (flag order reversed)
if (&Tmp-String-0 !~ /^BAR%{Tmp-String-8}$/im) {
	update reply {
		Filter-Id += 'Fail 20'
	}
}