xaizek / uncov (License: AGPLv3+) (since 2018-12-07)
Uncov(er) is a tool that collects and processes code coverage reports.
Commit 7ef176cd6e5d10ff94214ca35598adc7bc5524a3

Test GcovImporter thoroughly
Author: xaizek
Author date (UTC): 2021-06-06 16:37
Committer name: xaizek
Committer date (UTC): 2021-06-06 16:37
Parent(s): ee3f22f1d32b55d56231e40c2f5b7393facc31e7
Signing key: 99DC5E4DB05F6BE2
Tree: b8ff7fc9bb66b5f7d42a8207727527a5ed161f0f
File Lines added Lines deleted
tests/GcovImporter.cpp 125 0
File tests/GcovImporter.cpp added (mode: 100644) (index 0000000..b188aca)
1 // Copyright (C) 2021 xaizek <xaizek@posteo.net>
2 //
3 // This file is part of uncov.
4 //
5 // uncov is free software: you can redistribute it and/or modify
6 // it under the terms of version 3 of the GNU Affero General Public License as
7 // published by the Free Software Foundation.
8 //
9 // uncov is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU Affero General Public License for more details.
13 //
14 // You should have received a copy of the GNU Affero General Public License
15 // along with uncov. If not, see <http://www.gnu.org/licenses/>.
16
17 #include "Catch/catch.hpp"
18
19 #include <boost/filesystem/operations.hpp>
20 #include <boost/filesystem/path.hpp>
21 #include <boost/scope_exit.hpp>
22
23 #include <fstream>
24 #include <stdexcept>
25 #include <string>
26
27 #include "utils/fs.hpp"
28 #include "GcovImporter.hpp"
29
30 #include "TestUtils.hpp"
31
32 namespace fs = boost::filesystem;
33
34 TEST_CASE("Need support for at least one intermediate format", "[GcovImporter]")
35 {
36 GcovInfo gcovInfo(/*employBinning=*/false, /*jsonFormat=*/false,
37 /*intermediateFormat=*/false);
38 REQUIRE_THROWS_AS(GcovImporter("", "", {}, "", gcovInfo),
39 const std::runtime_error &);
40 }
41
42 TEST_CASE("Plain text format parsed and binning is performed", "[GcovImporter]")
43 {
44 TempDir tempDir("gcovimporter");
45 std::string tempDirPath = tempDir;
46
47 fs::create_directory(tempDirPath + "/src");
48 fs::create_directory(tempDirPath + "/tests");
49
50 std::ofstream{tempDirPath + "/src/file.gcno"} << "\n";
51 std::ofstream{tempDirPath + "/tests/file.gcno"} << "\n";
52
53 auto runner = [](std::vector<std::string> &&cmd, const std::string &dir) {
54 CHECK(cmd.size() == 5);
55
56 const fs::path inPath = cmd.back();
57 const fs::path relPath = inPath.parent_path().filename().string()
58 / inPath.filename();
59 const std::string outName = inPath.parent_path().filename().string()
60 + inPath.filename().string();
61 const std::string outPath = dir + '/' + outName + ".gcov";
62
63 std::ofstream{outPath}
64 << "file:" << relPath.string() << '\n'
65 << "lcount:1,1\n"
66 << "lcount:2,0\n";
67 };
68 auto prevRunner = GcovImporter::setRunner(runner);
69 BOOST_SCOPE_EXIT_ALL(prevRunner) {
70 GcovImporter::setRunner(prevRunner);
71 };
72
73 GcovInfo gcovInfo(/*employBinning=*/true, /*jsonFormat=*/false,
74 /*intermediateFormat=*/true);
75 std::vector<File> files =
76 GcovImporter(tempDirPath, tempDirPath, {}, tempDirPath,
77 gcovInfo).getFiles();
78
79 REQUIRE(files.size() == 2);
80 CHECK(files[0].getCoveredCount() == 1);
81 CHECK(files[0].getMissedCount() == 1);
82 CHECK(files[1].getCoveredCount() == 1);
83 CHECK(files[1].getMissedCount() == 1);
84 }
85
86 TEST_CASE("JSON format is parsed", "[GcovImporter]")
87 {
88 TempDir tempDir("gcovimporter");
89 std::string tempDirPath = tempDir;
90
91 std::ofstream{tempDirPath + "/file.gcno"} << "\n";
92
93 auto runner = [](std::vector<std::string> &&/*cmd*/,
94 const std::string &dir) {
95 makeGz(dir + "/out.gcov.json.gz", R"({
96 "files": [
97 {
98 "file": "file.gcno",
99 "lines": [
100 { "line_number": 1, "count": 1 },
101 { "line_number": 2, "count": 0 }
102 ]
103 },
104 {
105 "file": "/usr/include/whatever.h",
106 "lines": [ { "line_number": 1, "count": 1 } ]
107 }
108 ]
109 })");
110 };
111 auto prevRunner = GcovImporter::setRunner(runner);
112 BOOST_SCOPE_EXIT_ALL(prevRunner) {
113 GcovImporter::setRunner(prevRunner);
114 };
115
116 GcovInfo gcovInfo(/*employBinning=*/false, /*jsonFormat=*/true,
117 /*intermediateFormat=*/true);
118 std::vector<File> files =
119 GcovImporter(tempDirPath, tempDirPath, {}, tempDirPath,
120 gcovInfo).getFiles();
121
122 REQUIRE(files.size() == 1);
123 CHECK(files[0].getCoveredCount() == 1);
124 CHECK(files[0].getMissedCount() == 1);
125 }
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/uncov

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/uncov

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master