summaryrefslogtreecommitdiff
path: root/src/dhcp/tests
diff options
context:
space:
mode:
authorBeniamino Galvani <bgalvani@redhat.com>2017-02-27 11:11:51 +0100
committerBeniamino Galvani <bgalvani@redhat.com>2017-03-03 14:14:41 +0100
commitd405cfd9089f9552969e6a3e1a1c4550fc3c1695 (patch)
treed29aabbee2392cb7a1c33928b79f5d548bd82231 /src/dhcp/tests
parentc8fa7b6f57988d1761cd2d3a12631abeefce77f7 (diff)
downloadNetworkManager-d405cfd9089f9552969e6a3e1a1c4550fc3c1695.tar.gz
dhcp/dhclient: parse "interface" statements
Until now any "interface" statement was ignored and any enclosed statement for which we have a special handling was considered, even if belonging to a different interface. This can cause wrong options to be set in the generated dhclient configuration. Change the code to parse "interface" statements and skip the content if the interface doesn't match. https://bugzilla.gnome.org/show_bug.cgi?id=778430
Diffstat (limited to 'src/dhcp/tests')
-rw-r--r--src/dhcp/tests/test-dhcp-dhclient.c91
1 files changed, 91 insertions, 0 deletions
diff --git a/src/dhcp/tests/test-dhcp-dhclient.c b/src/dhcp/tests/test-dhcp-dhclient.c
index f4cf9c9ff2..361c7336be 100644
--- a/src/dhcp/tests/test-dhcp-dhclient.c
+++ b/src/dhcp/tests/test-dhcp-dhclient.c
@@ -744,6 +744,95 @@ test_write_existing_commented_duid (void)
/*****************************************************************************/
+static const char *interface1_orig = \
+ "interface \"eth0\" {\n"
+ " also request my-option;\n"
+ " initial-delay 5;\n"
+ "}\n"
+ "interface \"eth1\" {\n"
+ " also request another-option;\n"
+ " initial-delay 0;\n"
+ "}\n"
+ "\n"
+ "also request yet-another-option;\n";
+
+static const char *interface1_expected = \
+ "# Created by NetworkManager\n"
+ "# Merged from /path/to/dhclient.conf\n"
+ "\n"
+ "initial-delay 5;\n"
+ "\n"
+ "option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;\n"
+ "option ms-classless-static-routes code 249 = array of unsigned integer 8;\n"
+ "option wpad code 252 = string;\n"
+ "\n"
+ "also request my-option;\n"
+ "also request yet-another-option;\n"
+ "also request rfc3442-classless-static-routes;\n"
+ "also request ms-classless-static-routes;\n"
+ "also request static-routes;\n"
+ "also request wpad;\n"
+ "also request ntp-servers;\n"
+ "\n";
+
+static void
+test_interface1 (void)
+{
+ test_config (interface1_orig, interface1_expected,
+ FALSE, NULL, NULL,
+ NULL,
+ NULL,
+ "eth0",
+ NULL);
+}
+
+/*****************************************************************************/
+
+static const char *interface2_orig = \
+ "interface eth0 {\n"
+ " also request my-option;\n"
+ " initial-delay 5;\n"
+ " }\n"
+ "interface eth1 {\n"
+ " initial-delay 0;\n"
+ " request another-option;\n"
+ " } \n"
+ "\n"
+ "also request yet-another-option;\n";
+
+static const char *interface2_expected = \
+ "# Created by NetworkManager\n"
+ "# Merged from /path/to/dhclient.conf\n"
+ "\n"
+ "initial-delay 0;\n"
+ "\n"
+ "option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;\n"
+ "option ms-classless-static-routes code 249 = array of unsigned integer 8;\n"
+ "option wpad code 252 = string;\n"
+ "\n"
+ "request; # override dhclient defaults\n"
+ "also request another-option;\n"
+ "also request yet-another-option;\n"
+ "also request rfc3442-classless-static-routes;\n"
+ "also request ms-classless-static-routes;\n"
+ "also request static-routes;\n"
+ "also request wpad;\n"
+ "also request ntp-servers;\n"
+ "\n";
+
+static void
+test_interface2 (void)
+{
+ test_config (interface2_orig, interface2_expected,
+ FALSE, NULL, NULL,
+ NULL,
+ NULL,
+ "eth1",
+ NULL);
+}
+
+/*****************************************************************************/
+
static void
test_read_lease_ip4_config_basic (void)
{
@@ -891,6 +980,8 @@ main (int argc, char **argv)
g_test_add_func ("/dhcp/dhclient/existing_alsoreq", test_existing_alsoreq);
g_test_add_func ("/dhcp/dhclient/existing_multiline_alsoreq", test_existing_multiline_alsoreq);
g_test_add_func ("/dhcp/dhclient/duids", test_duids);
+ g_test_add_func ("/dhcp/dhclient/interface/1", test_interface1);
+ g_test_add_func ("/dhcp/dhclient/interface/2", test_interface2);
g_test_add_func ("/dhcp/dhclient/read_duid_from_leasefile", test_read_duid_from_leasefile);
g_test_add_func ("/dhcp/dhclient/read_commented_duid_from_leasefile", test_read_commented_duid_from_leasefile);