Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / src / xbt / xbt_str_test.cpp
1 /* xbt_str.cpp - various helping functions to deal with strings             */
2
3 /* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "xbt/str.h"
9
10 #include "simgrid/Exception.hpp"
11
12 #include "catch.hpp"
13 #include <string>
14 #include <vector>
15
16 namespace {
17 void test_split_quoted(const std::string& name, const char* input, const std::vector<std::string>& expected)
18 {
19   INFO(name);
20   xbt_dynar_t a = xbt_str_split_quoted(input);
21   REQUIRE(xbt_dynar_length(a) == expected.size());
22   unsigned i;
23   char* token;
24   xbt_dynar_foreach (a, i, token)
25     REQUIRE(token == expected[i]);
26   xbt_dynar_free(&a);
27 }
28
29 template <typename F> void test_parse_error(F function, const std::string& name, const char* str)
30 {
31   INFO(name);
32   REQUIRE_THROWS_AS(function(str, "Parse error"), std::invalid_argument);
33 }
34
35 template <typename F, typename T> void test_parse_ok(F function, const std::string& name, const char* str, T value)
36 {
37   INFO(name);
38   auto variable = static_cast<T>(-9999);
39   REQUIRE_NOTHROW(variable = function(str, "Parse error"));
40   REQUIRE(variable == value); /* Fail to parse str */
41 }
42 }
43
44 TEST_CASE("xbt::str: String Handling", "xbt_str")
45 {
46   SECTION("Test the function xbt_str_split_quoted")
47   {
48     test_split_quoted("Empty", "", {});
49     test_split_quoted("Basic test", "toto tutu", {"toto", "tutu"});
50     test_split_quoted("Useless backslashes", "\\t\\o\\t\\o \\t\\u\\t\\u", {"toto", "tutu"});
51     test_split_quoted("Protected space", "toto\\ tutu", {"toto tutu"});
52     test_split_quoted("Several spaces", "toto   tutu", {"toto", "tutu"});
53     test_split_quoted("LTrimming", "  toto tatu", {"toto", "tatu"});
54     test_split_quoted("Trimming", "  toto   tutu  ", {"toto", "tutu"});
55     test_split_quoted("Single quotes", "'toto tutu' tata", {"toto tutu", "tata"});
56     test_split_quoted("Double quotes", "\"toto tutu\" tata", {"toto tutu", "tata"});
57     test_split_quoted("Mixed quotes", "\"toto' 'tutu\" tata", {"toto' 'tutu", "tata"});
58     test_split_quoted("Backslashed quotes", "\\'toto tutu\\' tata", {"'toto", "tutu'", "tata"});
59     test_split_quoted("Backslashed quotes + quotes", "'toto \\'tutu' tata", {"toto 'tutu", "tata"});
60   }
61
62   SECTION("Test the parsing functions")
63   {
64     test_parse_ok(xbt_str_parse_int, "Parse int", "42", 42);
65     test_parse_ok(xbt_str_parse_int, "Parse 0 as an int", "0", 0);
66     test_parse_ok(xbt_str_parse_int, "Parse -1 as an int", "-1", -1);
67
68     test_parse_error(xbt_str_parse_int, "Parse int + noise", "342 cruft");
69     test_parse_error(xbt_str_parse_int, "Parse nullptr as an int", nullptr);
70     test_parse_error(xbt_str_parse_int, "Parse '' as an int", "");
71     test_parse_error(xbt_str_parse_int, "Parse cruft as an int", "cruft");
72
73     test_parse_ok(xbt_str_parse_double, "Parse 42 as a double", "42", 42);
74     test_parse_ok(xbt_str_parse_double, "Parse 42.5 as a double", "42.5", 42.5);
75     test_parse_ok(xbt_str_parse_double, "Parse 0 as a double", "0", 0);
76     test_parse_ok(xbt_str_parse_double, "Parse -1 as a double", "-1", -1);
77
78     test_parse_error(xbt_str_parse_double, "Parse double + noise", "342 cruft");
79     test_parse_error(xbt_str_parse_double, "Parse nullptr as a double", nullptr);
80     test_parse_error(xbt_str_parse_double, "Parse '' as a double", "");
81     test_parse_error(xbt_str_parse_double, "Parse cruft as a double", "cruft");
82   }
83 }