Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Unified Diff: core/fxcrt/cfx_count_ref_unittest.cpp

Issue 2281683002: Rework CFX_CountRef in terms of CFX_RetainPtr (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Add test that GetModify() may construct a duplicate Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/fpdfapi/fpdf_page/include/cpdf_path.h ('k') | core/fxcrt/include/cfx_count_ref.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/fxcrt/cfx_count_ref_unittest.cpp
diff --git a/core/fxcrt/cfx_count_ref_unittest.cpp b/core/fxcrt/cfx_count_ref_unittest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..11c7c9b86db5f358feb564ad4d0c2ed052477697
--- /dev/null
+++ b/core/fxcrt/cfx_count_ref_unittest.cpp
@@ -0,0 +1,129 @@
+// Copyright 2016 PDFium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "core/fxcrt/include/cfx_count_ref.h"
+
+#include <map>
+#include <string>
+
+#include "testing/fx_string_testhelpers.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace {
+
+class Observer {
+ public:
+ void OnConstruct(const std::string& name) { construction_counts_[name]++; }
+ void OnDestruct(const std::string& name) { destruction_counts_[name]++; }
+ int GetConstructionCount(const std::string& name) {
+ return construction_counts_[name];
+ }
+ int GetDestructionCount(const std::string& name) {
+ return destruction_counts_[name];
+ }
+
+ private:
+ std::map<std::string, int> construction_counts_;
+ std::map<std::string, int> destruction_counts_;
+};
+
+class Object {
+ public:
+ Object(Observer* observer, const std::string& name)
+ : name_(name), observer_(observer) {
+ observer->OnConstruct(name_);
+ }
+ Object(const Object& that) : name_(that.name_), observer_(that.observer_) {
+ observer_->OnConstruct(name_);
+ }
+ ~Object() { observer_->OnDestruct(name_); }
+
+ private:
+ std::string name_;
+ Observer* observer_;
+};
+
+} // namespace
+
+TEST(fxcrt, CountRefNull) {
+ Observer observer;
+ {
+ CFX_CountRef<Object> ptr;
+ EXPECT_EQ(nullptr, ptr.GetObject());
+ }
+}
+
+TEST(fxcrt, CountRefCopy) {
+ Observer observer;
+ {
+ CFX_CountRef<Object> ptr1;
+ ptr1.New(&observer, std::string("one"));
+ {
+ CFX_CountRef<Object> ptr2 = ptr1;
+ EXPECT_EQ(1, observer.GetConstructionCount("one"));
+ EXPECT_EQ(0, observer.GetDestructionCount("one"));
+ }
+ {
+ CFX_CountRef<Object> ptr3(ptr1);
+ EXPECT_EQ(1, observer.GetConstructionCount("one"));
+ EXPECT_EQ(0, observer.GetDestructionCount("one"));
+ }
+ EXPECT_EQ(1, observer.GetConstructionCount("one"));
+ EXPECT_EQ(0, observer.GetDestructionCount("one"));
+ }
+ EXPECT_EQ(1, observer.GetDestructionCount("one"));
+}
+
+TEST(fxcrt, CountRefAssignOverOld) {
+ Observer observer;
+ {
+ CFX_CountRef<Object> ptr1;
+ ptr1.New(&observer, std::string("one"));
+ ptr1.New(&observer, std::string("two"));
+ EXPECT_EQ(1, observer.GetConstructionCount("one"));
+ EXPECT_EQ(1, observer.GetConstructionCount("two"));
+ EXPECT_EQ(1, observer.GetDestructionCount("one"));
+ EXPECT_EQ(0, observer.GetDestructionCount("two"));
+ }
+ EXPECT_EQ(1, observer.GetDestructionCount("two"));
+}
+
+TEST(fxcrt, CountRefAssignOverRetained) {
+ Observer observer;
+ {
+ CFX_CountRef<Object> ptr1;
+ ptr1.New(&observer, std::string("one"));
+ CFX_CountRef<Object> ptr2(ptr1);
+ ptr1.New(&observer, std::string("two"));
+ EXPECT_EQ(1, observer.GetConstructionCount("one"));
+ EXPECT_EQ(1, observer.GetConstructionCount("two"));
+ EXPECT_EQ(0, observer.GetDestructionCount("one"));
+ EXPECT_EQ(0, observer.GetDestructionCount("two"));
+ }
+ EXPECT_EQ(1, observer.GetDestructionCount("one"));
+ EXPECT_EQ(1, observer.GetDestructionCount("two"));
+}
+
+TEST(fxcrt, CountRefGetModify) {
+ Observer observer;
+ {
+ CFX_CountRef<Object> ptr;
+ EXPECT_NE(nullptr, ptr.GetModify(&observer, std::string("one")));
+ EXPECT_EQ(1, observer.GetConstructionCount("one"));
+ EXPECT_EQ(0, observer.GetDestructionCount("one"));
+
+ EXPECT_NE(nullptr, ptr.GetModify(&observer, std::string("one")));
+ EXPECT_EQ(1, observer.GetConstructionCount("one"));
+ EXPECT_EQ(0, observer.GetDestructionCount("one"));
+ {
+ CFX_CountRef<Object> other(ptr);
+ EXPECT_NE(nullptr, ptr.GetModify(&observer, std::string("one")));
+ EXPECT_EQ(2, observer.GetConstructionCount("one"));
+ EXPECT_EQ(0, observer.GetDestructionCount("one"));
+ }
+ EXPECT_EQ(2, observer.GetConstructionCount("one"));
+ EXPECT_EQ(1, observer.GetDestructionCount("one"));
+ }
+ EXPECT_EQ(2, observer.GetDestructionCount("one"));
+}
« no previous file with comments | « core/fpdfapi/fpdf_page/include/cpdf_path.h ('k') | core/fxcrt/include/cfx_count_ref.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698