Added test case for filtering methods based on access specifier in sequence diagrams

This commit is contained in:
Bartek Kryza
2022-12-14 22:00:27 +01:00
parent fe9aa5d99a
commit 0d15d09de2
9 changed files with 122 additions and 30 deletions

16
tests/t20027/.clang-uml Normal file
View File

@@ -0,0 +1,16 @@
compilation_database_dir: ..
output_directory: puml
diagrams:
t20027_sequence:
type: sequence
glob:
- ../../tests/t20027/t20027.cc
include:
namespaces:
- clanguml::t20027
access:
- public
using_namespace:
- clanguml::t20027
start_from:
- function: "clanguml::t20027::tmain()"

22
tests/t20027/t20027.cc Normal file
View File

@@ -0,0 +1,22 @@
namespace clanguml {
namespace t20027 {
class A {
public:
void a() { aa(); }
protected:
void aa() { aaa(); }
private:
void aaa() { }
};
void tmain()
{
A a;
a.a();
}
}
}

44
tests/t20027/test_case.h Normal file
View File

@@ -0,0 +1,44 @@
/**
* tests/t20027/test_case.h
*
* Copyright (c) 2021-2022 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("t20027", "[test-case][sequence]")
{
auto [config, db] = load_config("t20027");
auto diagram = config.diagrams["t20027_sequence"];
REQUIRE(diagram->name == "t20027_sequence");
auto model = generate_sequence_diagram(*db, diagram);
REQUIRE(model->name() == "t20027_sequence");
auto puml = generate_sequence_puml(diagram, *model);
AliasMatcher _A(puml);
REQUIRE_THAT(puml, StartsWith("@startuml"));
REQUIRE_THAT(puml, EndsWith("@enduml\n"));
// Check if all calls exist
REQUIRE_THAT(puml, HasCall(_A("tmain()"), _A("A"), "a()"));
REQUIRE_THAT(puml, !HasCall(_A("A"), _A("A"), "aa()"));
REQUIRE_THAT(puml, !HasCall(_A("A"), _A("A"), "aaa()"));
save_puml(
"./" + config.output_directory() + "/" + diagram->name + ".puml", puml);
}

View File

@@ -273,6 +273,7 @@ using namespace clanguml::test::matchers;
#include "t20024/test_case.h"
#include "t20025/test_case.h"
#include "t20026/test_case.h"
#include "t20027/test_case.h"
///
/// Package diagram tests

View File

@@ -226,6 +226,9 @@ test_cases:
- name: t20026
title: Virtual method call sequence diagram test case
description:
- name: t20027
title: Filter call expressions based on access test case
description:
Package diagrams:
- name: t30001
title: Basic package diagram test case