]> git.ipfire.org Git - location/libloc.git/blobdiff - src/test-network.c
network: Optimise _subnet function
[location/libloc.git] / src / test-network.c
index a573463b0d5ee2659d2ba79f55f6784a58069c96..79c29679edb3e2fdc820cb4c35cb731b099ffca6 100644 (file)
 #include <stddef.h>
 #include <stdlib.h>
 #include <string.h>
+#include <syslog.h>
 
 #include <loc/libloc.h>
+#include <loc/database.h>
 #include <loc/network.h>
 #include <loc/writer.h>
 
@@ -32,16 +34,21 @@ int main(int argc, char** argv) {
        if (err < 0)
                exit(EXIT_FAILURE);
 
+       // Enable debug logging
+       loc_set_log_priority(ctx, LOG_DEBUG);
+
+#if 0
        struct loc_network_tree* tree;
        err = loc_network_tree_new(ctx, &tree);
        if (err) {
                fprintf(stderr, "Could not create the network tree\n");
                exit(EXIT_FAILURE);
        }
+#endif
 
        // Create a network
        struct loc_network* network1;
-       err = loc_network_new_from_string(ctx, &network1, "2001:db8::/32");
+       err = loc_network_new_from_string(ctx, &network1, "2001:db8::1/32");
        if (err) {
                fprintf(stderr, "Could not create the network\n");
                exit(EXIT_FAILURE);
@@ -53,12 +60,37 @@ int main(int argc, char** argv) {
                exit(EXIT_FAILURE);
        }
 
+#if 0
        // Adding network to the tree
        err = loc_network_tree_add_network(tree, network1);
        if (err) {
                fprintf(stderr, "Could not add network to the tree\n");
                exit(EXIT_FAILURE);
        }
+#endif
+
+       // Check if the first and last addresses are correct
+       char* string = loc_network_format_first_address(network1);
+       if (!string) {
+               fprintf(stderr, "Did get NULL instead of a string for the first address\n");
+               exit(EXIT_FAILURE);
+       }
+
+       if (strcmp(string, "2001:db8::") != 0) {
+               fprintf(stderr, "Got an incorrect first address: %s\n", string);
+               exit(EXIT_FAILURE);
+       }
+
+       string = loc_network_format_last_address(network1);
+       if (!string) {
+               fprintf(stderr, "Did get NULL instead of a string for the last address\n");
+               exit(EXIT_FAILURE);
+       }
+
+       if (strcmp(string, "2001:db8:ffff:ffff:ffff:ffff:ffff:ffff") != 0) {
+               fprintf(stderr, "Got an incorrect last address: %s\n", string);
+               exit(EXIT_FAILURE);
+       }
 
        struct loc_network* network2;
        err = loc_network_new_from_string(ctx, &network2, "2001:db8:ffff::/48");
@@ -73,6 +105,7 @@ int main(int argc, char** argv) {
                exit(EXIT_FAILURE);
        }
 
+#if 0
        // Adding network to the tree
        err = loc_network_tree_add_network(tree, network2);
        if (err) {
@@ -89,15 +122,91 @@ int main(int argc, char** argv) {
 
        size_t nodes = loc_network_tree_count_nodes(tree);
        printf("The tree has %zu nodes\n", nodes);
+#endif
+
+       // Check equals function
+       err = loc_network_eq(network1, network1);
+       if (!err) {
+               fprintf(stderr, "Network is not equal with itself\n");
+               exit(EXIT_FAILURE);
+       }
+
+       err = loc_network_eq(network1, network2);
+       if (err) {
+               fprintf(stderr, "Networks equal unexpectedly\n");
+               exit(EXIT_FAILURE);
+       }
+
+       // Check subnet function
+       err = loc_network_is_subnet(network1, network2);
+       if (!err) {
+               fprintf(stderr, "Subnet check 1 failed: %d\n", err);
+               exit(EXIT_FAILURE);
+       }
+
+       err = loc_network_is_subnet(network2, network1);
+       if (err) {
+               fprintf(stderr, "Subnet check 2 failed: %d\n", err);
+               exit(EXIT_FAILURE);
+       }
+
+       // Make subnets
+       struct loc_network* subnet1 = NULL;
+       struct loc_network* subnet2 = NULL;
+
+       err  = loc_network_subnets(network1, &subnet1, &subnet2);
+       if (err || !subnet1 || !subnet2) {
+               fprintf(stderr, "Could not find subnets of network: %d\n", err);
+               exit(EXIT_FAILURE);
+       }
+
+       char* s = loc_network_str(subnet1);
+       printf("Received subnet1 = %s\n", s);
+       free(s);
+
+       s = loc_network_str(subnet2);
+       printf("Received subnet2 = %s\n", s);
+       free(s);
+
+       if (!loc_network_is_subnet(network1, subnet1)) {
+               fprintf(stderr, "Subnet1 is not a subnet\n");
+               exit(EXIT_FAILURE);
+       }
+
+       if (!loc_network_is_subnet(network1, subnet2)) {
+               fprintf(stderr, "Subnet2 is not a subnet\n");
+               exit(EXIT_FAILURE);
+       }
+
+       loc_network_unref(subnet1);
+       loc_network_unref(subnet2);
+
+       struct loc_network_list* excluded = loc_network_exclude(network1, network2);
+       if (!excluded) {
+               fprintf(stderr, "Could not create excluded list\n");
+               exit(EXIT_FAILURE);
+       }
+
+       loc_network_list_dump(excluded);
+
+       // Reverse it
+       loc_network_list_reverse(excluded);
+       loc_network_list_dump(excluded);
+
+       // Sort them and dump them again
+       loc_network_list_sort(excluded);
+       loc_network_list_dump(excluded);
+
+       loc_network_list_unref(excluded);
 
        // Create a database
        struct loc_writer* writer;
-       err = loc_writer_new(ctx, &writer);
+       err = loc_writer_new(ctx, &writer, NULL, NULL);
        if (err < 0)
                exit(EXIT_FAILURE);
 
        struct loc_network* network3;
-       err = loc_writer_add_network(writer, &network3, "2001:db8:1::/48");
+       err = loc_writer_add_network(writer, &network3, "2001:db8::/64");
        if (err) {
                fprintf(stderr, "Could not add network\n");
                exit(EXIT_FAILURE);
@@ -106,26 +215,89 @@ int main(int argc, char** argv) {
        // Set country code
        loc_network_set_country_code(network3, "XX");
 
-       FILE* f = fopen("test.db", "w");
+       struct loc_network* network4;
+       err = loc_writer_add_network(writer, &network4, "2001:db8:ffff::/64");
+       if (err) {
+               fprintf(stderr, "Could not add network\n");
+               exit(EXIT_FAILURE);
+       }
+
+       // Set country code
+       loc_network_set_country_code(network4, "XY");
+
+       // Set ASN
+       loc_network_set_asn(network4, 1024);
+
+       // Try adding an invalid network
+       struct loc_network* network;
+       err = loc_writer_add_network(writer, &network, "xxxx:xxxx::/32");
+       if (err != -EINVAL) {
+               fprintf(stderr, "It was possible to add an invalid network (err = %d)\n", err);
+               exit(EXIT_FAILURE);
+       }
+
+       // Try adding a single address
+       err = loc_writer_add_network(writer, &network, "2001:db8::");
+       if (err) {
+               fprintf(stderr, "It was impossible to add an single IP address (err = %d)\n", err);
+               exit(EXIT_FAILURE);
+       }
+
+       // Try adding localhost
+       err = loc_writer_add_network(writer, &network, "::1/128");
+       if (err != -EINVAL) {
+               fprintf(stderr, "It was possible to add localhost (::1/128): %d\n", err);
+               exit(EXIT_FAILURE);
+       }
+
+       FILE* f = tmpfile();
        if (!f) {
                fprintf(stderr, "Could not open file for writing: %s\n", strerror(errno));
                exit(EXIT_FAILURE);
        }
 
-       err = loc_writer_write(writer, f);
+       err = loc_writer_write(writer, f, LOC_DATABASE_VERSION_UNSET);
        if (err) {
                fprintf(stderr, "Could not write database: %s\n", strerror(-err));
                exit(EXIT_FAILURE);
        }
-       fclose(f);
-
        loc_writer_unref(writer);
 
        loc_network_unref(network1);
        loc_network_unref(network2);
        loc_network_unref(network3);
+       loc_network_unref(network4);
+
+#if 0
        loc_network_tree_unref(tree);
+#endif
+
+       // And open it again from disk
+       struct loc_database* db;
+       err = loc_database_new(ctx, &db, f);
+       if (err) {
+               fprintf(stderr, "Could not open database: %s\n", strerror(-err));
+               exit(EXIT_FAILURE);
+       }
+
+       // Lookup an address in the subnet
+       err = loc_database_lookup_from_string(db, "2001:db8::", &network1);
+       if (err) {
+               fprintf(stderr, "Could not look up 2001:db8::\n");
+               exit(EXIT_FAILURE);
+       }
+       loc_network_unref(network1);
+
+       // Lookup an address outside the subnet
+       err = loc_database_lookup_from_string(db, "2001:db8:fffe:1::", &network1);
+       if (err == 0) {
+               fprintf(stderr, "Could look up 2001:db8:fffe:1::, but I shouldn't\n");
+               exit(EXIT_FAILURE);
+       }
+       loc_network_unref(network1);
+
        loc_unref(ctx);
+       fclose(f);
 
        return EXIT_SUCCESS;
 }