Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
container_trace_unittest.cpp
Go to the documentation of this file.
1// Copyright 2020 The PDFium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "fxjs/gc/container_trace.h"
6
7#include <stdint.h>
8
9#include <list>
10#include <map>
11#include <set>
12#include <vector>
13
14#include "testing/gtest/include/gtest/gtest.h"
15#include "v8/include/cppgc/member.h"
16
17namespace {
18
19class Thing : public cppgc::GarbageCollected<Thing> {
20 public:
21 void Trace(cppgc::Visitor* visitor) const {}
22};
23
24class CountingVisitor {
25 public:
26 CountingVisitor() = default;
27
28 void Trace(const void* that) { ++call_count_; }
29 int call_count() const { return call_count_; }
30
31 private:
32 int call_count_ = 0;
33};
34
35} // namespace
36
37TEST(ContainerTrace, ActualListTrace) {
38 std::list<cppgc::Member<Thing>> thing;
39 thing.emplace_back(nullptr);
40
41 CountingVisitor cv;
42 ContainerTrace(&cv, thing);
43 EXPECT_EQ(1, cv.call_count());
44}
45
46TEST(ContainerTrace, ActualMapTraceFirst) {
47 std::map<cppgc::Member<Thing>, int> thing;
48 thing[nullptr] = 42;
49
50 CountingVisitor cv;
51 ContainerTrace(&cv, thing);
52 EXPECT_EQ(1, cv.call_count());
53}
54
55TEST(ContainerTrace, ActualMapTraceSecond) {
56 std::map<int, cppgc::Member<Thing>> thing;
57 thing[42] = nullptr;
58
59 CountingVisitor cv;
60 ContainerTrace(&cv, thing);
61 EXPECT_EQ(1, cv.call_count());
62}
63
64TEST(ContainerTrace, ActualMapTraceBoth) {
65 std::map<cppgc::Member<Thing>, cppgc::Member<Thing>> thing;
66 thing[nullptr] = nullptr;
67
68 CountingVisitor cv;
69 ContainerTrace(&cv, thing);
70 EXPECT_EQ(2, cv.call_count());
71}
72
73TEST(ContainerTrace, ActualSetTrace) {
74 std::set<cppgc::Member<Thing>> thing;
75 thing.insert(nullptr);
76
77 CountingVisitor cv;
78 ContainerTrace(&cv, thing);
79 EXPECT_EQ(1, cv.call_count());
80}
81
82TEST(ContainerTrace, ActualVectorTrace) {
83 std::vector<cppgc::Member<Thing>> thing;
84 thing.emplace_back(nullptr);
85
86 CountingVisitor cv;
87 ContainerTrace(&cv, thing);
88 EXPECT_EQ(1, cv.call_count());
89}
TEST(FXCRYPT, CryptToBase16)