Added virtual method call test case

This commit is contained in:
Bartek Kryza
2022-12-13 23:47:04 +01:00
parent d7c8c14cda
commit ed2b3e188b
7 changed files with 88 additions and 2 deletions

View File

@@ -819,7 +819,8 @@ bool translation_unit_visitor::VisitCallExpr(clang::CallExpr *expr)
return true;
// Skip casts, moves and such
if (expr->isCallToStdMove()) return true;
if (expr->isCallToStdMove())
return true;
if (expr->isImplicitCXXThis())
return true;

View File

@@ -36,7 +36,7 @@ int tmain()
result = a.a();
result += add(1, 2);
result += add2(2, 4);
return result;

14
tests/t20026/.clang-uml Normal file
View File

@@ -0,0 +1,14 @@
compilation_database_dir: ..
output_directory: puml
diagrams:
t20026_sequence:
type: sequence
glob:
- ../../tests/t20026/t20026.cc
include:
namespaces:
- clanguml::t20026
using_namespace:
- clanguml::t20026
start_from:
- function: "clanguml::t20026::tmain()"

25
tests/t20026/t20026.cc Normal file
View File

@@ -0,0 +1,25 @@
namespace clanguml {
namespace t20026 {
struct A {
virtual void a() { }
};
struct B : public A {
void a() override { }
};
struct C : public B {
void a() override { }
};
int tmain()
{
C *a{};
dynamic_cast<A *>(a)->a();
return 0;
}
}
}

42
tests/t20026/test_case.h Normal file
View File

@@ -0,0 +1,42 @@
/**
* tests/t20026/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("t20026", "[test-case][sequence]")
{
auto [config, db] = load_config("t20026");
auto diagram = config.diagrams["t20026_sequence"];
REQUIRE(diagram->name == "t20026_sequence");
auto model = generate_sequence_diagram(*db, diagram);
REQUIRE(model->name() == "t20026_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()"));
save_puml(
"./" + config.output_directory() + "/" + diagram->name + ".puml", puml);
}

View File

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

View File

@@ -223,6 +223,9 @@ test_cases:
- name: t20025
title: Skip decorator sequence diagram test case
description:
- name: t20026
title: Virtual method call sequence diagram test case
description:
Package diagrams:
- name: t30001
title: Basic package diagram test case