summaryrefslogtreecommitdiffstats
path: root/xpcom/tests/gtest/TestCOMPtrEq.cpp
blob: 2056ce136805c181164607463875852382f6faf5 (plain)
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
80
81
82
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/**
 * This attempts to test all the possible variations of |operator==|
 * used with |nsCOMPtr|s.
 */

#include "nsCOMPtr.h"
#include "gtest/gtest.h"

#define NS_ICOMPTREQTESTFOO_IID                      \
  {                                                  \
    0x8eb5bbef, 0xd1a3, 0x4659, {                    \
      0x9c, 0xf6, 0xfd, 0xf3, 0xe4, 0xd2, 0x00, 0x0e \
    }                                                \
  }

class nsICOMPtrEqTestFoo : public nsISupports {
 public:
  NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICOMPTREQTESTFOO_IID)
};

NS_DEFINE_STATIC_IID_ACCESSOR(nsICOMPtrEqTestFoo, NS_ICOMPTREQTESTFOO_IID)

TEST(COMPtrEq, NullEquality)
{
  nsCOMPtr<nsICOMPtrEqTestFoo> s;
  nsICOMPtrEqTestFoo* r = nullptr;
  const nsCOMPtr<nsICOMPtrEqTestFoo> sc;
  const nsICOMPtrEqTestFoo* rc = nullptr;
  nsICOMPtrEqTestFoo* const rk = nullptr;
  const nsICOMPtrEqTestFoo* const rkc = nullptr;
  nsICOMPtrEqTestFoo* d = s;

  ASSERT_EQ(s, s);
  ASSERT_EQ(s, r);
  ASSERT_EQ(s, sc);
  ASSERT_EQ(s, rc);
  ASSERT_EQ(s, rk);
  ASSERT_EQ(s, rkc);
  ASSERT_EQ(s, d);
  ASSERT_EQ(r, s);
  ASSERT_EQ(r, sc);
  ASSERT_EQ(r, rc);
  ASSERT_EQ(r, rk);
  ASSERT_EQ(r, rkc);
  ASSERT_EQ(r, d);
  ASSERT_EQ(sc, s);
  ASSERT_EQ(sc, r);
  ASSERT_EQ(sc, sc);
  ASSERT_EQ(sc, rc);
  ASSERT_EQ(sc, rk);
  ASSERT_EQ(sc, rkc);
  ASSERT_EQ(sc, d);
  ASSERT_EQ(rc, s);
  ASSERT_EQ(rc, r);
  ASSERT_EQ(rc, sc);
  ASSERT_EQ(rc, rk);
  ASSERT_EQ(rc, rkc);
  ASSERT_EQ(rc, d);
  ASSERT_EQ(rk, s);
  ASSERT_EQ(rk, r);
  ASSERT_EQ(rk, sc);
  ASSERT_EQ(rk, rc);
  ASSERT_EQ(rk, rkc);
  ASSERT_EQ(rk, d);
  ASSERT_EQ(rkc, s);
  ASSERT_EQ(rkc, r);
  ASSERT_EQ(rkc, sc);
  ASSERT_EQ(rkc, rc);
  ASSERT_EQ(rkc, rk);
  ASSERT_EQ(rkc, d);
  ASSERT_EQ(d, s);
  ASSERT_EQ(d, r);
  ASSERT_EQ(d, sc);
  ASSERT_EQ(d, rc);
  ASSERT_EQ(d, rk);
  ASSERT_EQ(d, rkc);
}