Václav Kubernát | 5395e71 | 2019-12-03 18:24:33 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2019 CESNET, https://photonics.cesnet.cz/ |
| 3 | * |
| 4 | * Written by Václav Kubernát <kubervac@fit.cvut.cz> |
| 5 | * |
| 6 | */ |
| 7 | |
Václav Kubernát | 26b5608 | 2020-02-03 18:28:56 +0100 | [diff] [blame] | 8 | #include "trompeloeil_doctest.hpp" |
Václav Kubernát | 5395e71 | 2019-12-03 18:24:33 +0100 | [diff] [blame] | 9 | #include "ast_path.hpp" |
| 10 | |
| 11 | TEST_CASE("path utils") |
| 12 | { |
| 13 | SECTION("pathToDataString") |
| 14 | { |
| 15 | dataPath_ path; |
| 16 | std::string expected; |
| 17 | SECTION("example-schema:twoKeyList[first='a'][second='b']") |
| 18 | { |
| 19 | SECTION("absolute") |
| 20 | { |
| 21 | path.m_scope = Scope::Absolute; |
| 22 | expected += "/"; |
| 23 | } |
| 24 | SECTION("relative") |
| 25 | { |
| 26 | path.m_scope = Scope::Relative; |
| 27 | } |
Václav Kubernát | 7707cae | 2020-01-16 12:04:53 +0100 | [diff] [blame] | 28 | path.m_nodes.push_back(dataNode_{module_{"example-schema"}, listElement_{"twoKeyList", {{"first", std::string{"a"}}, {"second", std::string{"b"}}}}}); |
Václav Kubernát | 5395e71 | 2019-12-03 18:24:33 +0100 | [diff] [blame] | 29 | expected += "example-schema:twoKeyList[first='a'][second='b']"; |
| 30 | } |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 31 | REQUIRE(pathToDataString(path, Prefixes::WhenNeeded) == expected); |
Václav Kubernát | 5395e71 | 2019-12-03 18:24:33 +0100 | [diff] [blame] | 32 | } |
| 33 | } |