78 lines
2.8 KiB
C++
78 lines
2.8 KiB
C++
/**
|
|
* tests/t20001/test_case.h
|
|
*
|
|
* Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
TEST_CASE("t20001")
|
|
{
|
|
using namespace clanguml::test;
|
|
|
|
auto [config, db, diagram, model] =
|
|
CHECK_SEQUENCE_MODEL("t20001", "t20001_sequence");
|
|
|
|
CHECK_SEQUENCE_DIAGRAM(
|
|
*config, diagram, *model,
|
|
[](const auto &src) {
|
|
REQUIRE(HasTitle(src, "Basic sequence diagram example"));
|
|
|
|
REQUIRE(MessageOrder(src,
|
|
{
|
|
//
|
|
{"tmain()", "A", "A()"}, //
|
|
{"tmain()", "B", "B(A &)"}, //
|
|
|
|
{"tmain()", "A", "add(int,int)"}, //
|
|
|
|
{"tmain()", "B", "wrap_add3(int,int,int)"}, //
|
|
{"B", "A", "add3(int,int,int)"}, //
|
|
{"A", "A", "add(int,int)"}, //
|
|
{"A", "A", "log_result(int)", Static{}}, //
|
|
{"B", "A", "log_result(int)", Static{}} //
|
|
}));
|
|
|
|
REQUIRE(!HasMessage(src, {"A", {"detail", "C"}, "add(int,int)"}));
|
|
|
|
REQUIRE(HasComment(src, "t20001 test diagram of type sequence"));
|
|
|
|
REQUIRE(HasMessageComment(src, "tmain()", "Just add 2 numbers"));
|
|
|
|
REQUIRE(HasMessageComment(src, "tmain()", "And now add another 2"));
|
|
},
|
|
[](const json_t &src) {
|
|
const auto &A = get_participant(src.src, "A");
|
|
|
|
CHECK(A.has_value());
|
|
|
|
CHECK(A.value()["type"] == "class");
|
|
CHECK(A.value()["name"] == "A");
|
|
CHECK(A.value()["display_name"] == "A");
|
|
CHECK(A.value()["namespace"] == "clanguml::t20001");
|
|
CHECK(A.value()["source_location"]["file"] == "t20001.cc");
|
|
CHECK(A.value()["source_location"]["line"] == 13);
|
|
|
|
const auto &tmain = get_participant(src.src, "tmain()");
|
|
|
|
CHECK(tmain.has_value());
|
|
|
|
CHECK(tmain.value()["type"] == "function");
|
|
CHECK(tmain.value()["name"] == "tmain");
|
|
CHECK(tmain.value()["display_name"] == "tmain()");
|
|
CHECK(tmain.value()["namespace"] == "clanguml::t20001");
|
|
CHECK(tmain.value()["source_location"]["file"] == "t20001.cc");
|
|
CHECK(tmain.value()["source_location"]["line"] == 61);
|
|
});
|
|
}
|