blob: 481ab6e83b8dcbfe49cf973259e0e56335b57dfc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#include "fixtures.hpp"
#include <pdb/all.hpp>
#include <test_lib.hpp>
#include <boost/test/unit_test.hpp>
#include <algorithm>
#include <sstream>
#include <string>
#include <vector>
BOOST_FIXTURE_TEST_SUITE(call_stack_tests, CurrentProcess)
BOOST_AUTO_TEST_CASE(call_stack) {
try {
test_ns::throw_call_stack();
} catch (const pdb::CallStack& call_stack) {
// First, check that the call stack have been caught.
BOOST_TEST(true, "Caught the call stack");
// Debug output:
std::vector<std::string> pretty;
pretty.reserve(call_stack.length);
BOOST_TEST_MESSAGE("Call stack:");
for (const auto& addr : call_stack) {
pretty.emplace_back(call_stack.pretty_print_address(dbghelp, addr));
BOOST_TEST_MESSAGE('\t' << pdb::format_address(addr) << ' ' << pretty.back());
}
// Second, resolve the symbols:
std::vector<pdb::SymbolInfo> symbols;
symbols.reserve(call_stack.length);
BOOST_TEST_MESSAGE("Resolved symbols:");
for (const auto& addr : call_stack) {
symbols.emplace_back(dbghelp.resolve_symbol(addr));
const auto& symbol = symbols.back();
BOOST_TEST_MESSAGE('\t' << pdb::format_address(symbol.get_offline_address()) << ' '
<< symbol.get_name());
}
{
// Third, check that the expected function frames are in the call stack.
const auto expected = expected_function_addresses();
const auto check = [&](pdb::Address addr) {
for (const auto& symbol : symbols)
if (symbol.get_offline_address() == addr)
return true;
return false;
};
for (const auto& addr : expected) {
BOOST_TEST(check(addr), "Function frame captured: " << pdb::format_address(addr));
}
}
{
// Fourth, check that the expected function names are in the call stack.
const auto expected = expected_functions_full();
const auto check = [&](const std::string& name) {
for (const auto& actual : pretty)
if (actual.find(name) != std::string::npos)
return true;
return false;
};
for (const auto& name : expected) {
BOOST_TEST(check(name), "Function frame captured: " << name);
}
}
return;
}
// We must catch the call stack.
BOOST_TEST(false, "Didn't catch the call stack");
}
BOOST_AUTO_TEST_SUITE_END()
|