Added free function sequence diagram test case
This commit is contained in:
@@ -93,6 +93,8 @@ void translation_unit_visitor::process_activities(const cppast::cpp_function &e)
|
|||||||
.lookup_definition(function_call.get_callee_id())
|
.lookup_definition(function_call.get_callee_id())
|
||||||
.value();
|
.value();
|
||||||
m.to = cx::util::ns(callee) + "::" + callee.name();
|
m.to = cx::util::ns(callee) + "::" + callee.name();
|
||||||
|
if (callee.kind() == cpp_entity_kind::function_t)
|
||||||
|
m.to += "()";
|
||||||
|
|
||||||
if (!ctx.config().should_include(m.to))
|
if (!ctx.config().should_include(m.to))
|
||||||
continue;
|
continue;
|
||||||
|
|||||||
14
tests/t20002/.clang-uml
Normal file
14
tests/t20002/.clang-uml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
compilation_database_dir: ..
|
||||||
|
output_directory: puml
|
||||||
|
diagrams:
|
||||||
|
t20002_sequence:
|
||||||
|
type: sequence
|
||||||
|
glob:
|
||||||
|
- ../../tests/t20002/t20002.cc
|
||||||
|
include:
|
||||||
|
namespaces:
|
||||||
|
- clanguml::t20002
|
||||||
|
using_namespace:
|
||||||
|
- clanguml::t20002
|
||||||
|
start_from:
|
||||||
|
- function: "clanguml::t20002::m1()"
|
||||||
16
tests/t20002/t20002.cc
Normal file
16
tests/t20002/t20002.cc
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
#include <algorithm>
|
||||||
|
#include <numeric>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
namespace clanguml {
|
||||||
|
namespace t20002 {
|
||||||
|
|
||||||
|
void m4() { }
|
||||||
|
|
||||||
|
void m3() { m4(); }
|
||||||
|
|
||||||
|
void m2() { m3(); }
|
||||||
|
|
||||||
|
void m1() { m2(); }
|
||||||
|
}
|
||||||
|
}
|
||||||
46
tests/t20002/test_case.h
Normal file
46
tests/t20002/test_case.h
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
/**
|
||||||
|
* tests/t20002/test_case.cc
|
||||||
|
*
|
||||||
|
* Copyright (c) 2021 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("t20002", "[test-case][sequence]")
|
||||||
|
{
|
||||||
|
auto [config, db] = load_config("t20002");
|
||||||
|
|
||||||
|
auto diagram = config.diagrams["t20002_sequence"];
|
||||||
|
|
||||||
|
REQUIRE(diagram->include.namespaces.size() == 1);
|
||||||
|
REQUIRE_THAT(diagram->include.namespaces,
|
||||||
|
VectorContains(std::string{"clanguml::t20002"}));
|
||||||
|
|
||||||
|
REQUIRE(diagram->name == "t20002_sequence");
|
||||||
|
|
||||||
|
auto model = generate_sequence_diagram(db, diagram);
|
||||||
|
|
||||||
|
REQUIRE(model.name == "t20002_sequence");
|
||||||
|
|
||||||
|
auto puml = generate_sequence_puml(diagram, model);
|
||||||
|
|
||||||
|
REQUIRE_THAT(puml, StartsWith("@startuml"));
|
||||||
|
REQUIRE_THAT(puml, EndsWith("@enduml\n"));
|
||||||
|
|
||||||
|
REQUIRE_THAT(puml, HasFunctionCall("m1", "m2"));
|
||||||
|
REQUIRE_THAT(puml, HasFunctionCall("m2", "m3"));
|
||||||
|
REQUIRE_THAT(puml, HasFunctionCall("m3", "m4"));
|
||||||
|
|
||||||
|
save_puml(
|
||||||
|
"./" + config.output_directory + "/" + diagram->name + ".puml", puml);
|
||||||
|
}
|
||||||
@@ -145,6 +145,7 @@ using namespace clanguml::test::matchers;
|
|||||||
// Sequence diagram tests
|
// Sequence diagram tests
|
||||||
//
|
//
|
||||||
#include "t20001/test_case.h"
|
#include "t20001/test_case.h"
|
||||||
|
#include "t20002/test_case.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
// Other tests (e.g. configuration file)
|
// Other tests (e.g. configuration file)
|
||||||
|
|||||||
@@ -127,6 +127,15 @@ ContainsMatcher HasCall(std::string const &from, std::string const &message,
|
|||||||
caseSensitivity));
|
caseSensitivity));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ContainsMatcher HasFunctionCall(std::string const &from,
|
||||||
|
std::string const &message,
|
||||||
|
CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes)
|
||||||
|
{
|
||||||
|
return ContainsMatcher(CasedString(
|
||||||
|
fmt::format("\"{}()\" -> \"{}()\" : {}()", from, message, message),
|
||||||
|
caseSensitivity));
|
||||||
|
}
|
||||||
|
|
||||||
ContainsMatcher HasCall(std::string const &from, std::string const &to,
|
ContainsMatcher HasCall(std::string const &from, std::string const &to,
|
||||||
std::string const &message,
|
std::string const &message,
|
||||||
CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes)
|
CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes)
|
||||||
|
|||||||
@@ -101,7 +101,10 @@ test_cases:
|
|||||||
description:
|
description:
|
||||||
Sequence diagrams:
|
Sequence diagrams:
|
||||||
- name: t20001
|
- name: t20001
|
||||||
title: Basic sequence diagram
|
title: Basic sequence diagram test case
|
||||||
|
description:
|
||||||
|
- name: t20002
|
||||||
|
title: Free function sequence diagram test case
|
||||||
description:
|
description:
|
||||||
Configuration diagrams:
|
Configuration diagrams:
|
||||||
- name: t90000
|
- name: t90000
|
||||||
|
|||||||
Reference in New Issue
Block a user