aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Core/Tests/FIRAppAssociationRegistrationUnitTests.m
blob: f037aec42b3ed94d367eec720a6c7145bde46a68 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
// Copyright 2017 Google
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#import <XCTest/XCTest.h>

#import "FirebaseCore/FIRAppAssociationRegistration.h"

/** @var kKey
    @brief A unique string key.
 */
static NSString *kKey = @"key";

/** @var kKey1
    @brief A unique string key.
 */
static NSString *kKey1 = @"key1";

/** @var kKey2
    @brief A unique string key.
 */
static NSString *kKey2 = @"key2";

/** @var gCreateNewObject
    @brief A block that returns a new object everytime it is called.
 */
static id _Nullable (^gCreateNewObject)() = ^id _Nullable() {
  return [[NSObject alloc] init];
};

/** @class FIRAppAssociationRegistrationTests
    @brief Tests for @c FIRAppAssociationRegistration
 */
@interface FIRAppAssociationRegistrationTests : XCTestCase
@end

@implementation FIRAppAssociationRegistrationTests

- (void)testPassObject {
  id host = gCreateNewObject();
  id obj = gCreateNewObject();
  id result = [FIRAppAssociationRegistration registeredObjectWithHost:host
                                                                  key:kKey
                                                        creationBlock:^id _Nullable() {
                                                          return obj;
                                                        }];
  XCTAssertEqual(obj, result);
}

- (void)testPassNil {
  id host = gCreateNewObject();
  id obj = [FIRAppAssociationRegistration registeredObjectWithHost:host
                                                               key:kKey
                                                     creationBlock:^id _Nullable() {
                                                       return nil;
                                                     }];
  XCTAssertNil(obj);
}

- (void)testObjectOwnership {
  __weak id weakHost;
  __block __weak id weakObj;
  @autoreleasepool {
    id host = gCreateNewObject();
    weakHost = host;
    [FIRAppAssociationRegistration registeredObjectWithHost:host
                                                        key:kKey
                                              creationBlock:^id _Nullable() {
                                                id obj = gCreateNewObject();
                                                weakObj = obj;
                                                return obj;
                                              }];
    // Verify that neither the host nor the object is released yet, i.e., the host owns the object
    // because nothing else retains the object.
    XCTAssertNotNil(weakHost);
    XCTAssertNotNil(weakObj);
  }
  // Verify that both the host and the object are released upon exit of the autorelease pool,
  // i.e., the host is the sole owner of the object.
  XCTAssertNil(weakHost);
  XCTAssertNil(weakObj);
}

- (void)testSameHostSameKey {
  id host = gCreateNewObject();
  id obj1 = [FIRAppAssociationRegistration registeredObjectWithHost:host
                                                                key:kKey
                                                      creationBlock:gCreateNewObject];
  id obj2 = [FIRAppAssociationRegistration registeredObjectWithHost:host
                                                                key:kKey
                                                      creationBlock:gCreateNewObject];
  XCTAssertEqual(obj1, obj2);
}

- (void)testSameHostDifferentKey {
  id host = gCreateNewObject();
  id obj1 = [FIRAppAssociationRegistration registeredObjectWithHost:host
                                                                key:kKey1
                                                      creationBlock:gCreateNewObject];
  id obj2 = [FIRAppAssociationRegistration registeredObjectWithHost:host
                                                                key:kKey2
                                                      creationBlock:gCreateNewObject];
  XCTAssertNotEqual(obj1, obj2);
}

- (void)testDifferentHostSameKey {
  id host1 = gCreateNewObject();
  id obj1 = [FIRAppAssociationRegistration registeredObjectWithHost:host1
                                                                key:kKey
                                                      creationBlock:gCreateNewObject];
  id host2 = gCreateNewObject();
  id obj2 = [FIRAppAssociationRegistration registeredObjectWithHost:host2
                                                                key:kKey
                                                      creationBlock:gCreateNewObject];
  XCTAssertNotEqual(obj1, obj2);
}

- (void)testDifferentHostDifferentKey {
  id host1 = gCreateNewObject();
  id obj1 = [FIRAppAssociationRegistration registeredObjectWithHost:host1
                                                                key:kKey1
                                                      creationBlock:gCreateNewObject];
  id host2 = gCreateNewObject();
  id obj2 = [FIRAppAssociationRegistration registeredObjectWithHost:host2
                                                                key:kKey2
                                                      creationBlock:gCreateNewObject];
  XCTAssertNotEqual(obj1, obj2);
}

- (void)testReentrySameHostSameKey {
  id host = gCreateNewObject();
  XCTAssertThrows([FIRAppAssociationRegistration
      registeredObjectWithHost:host
                           key:kKey
                 creationBlock:^id _Nullable() {
                   [FIRAppAssociationRegistration registeredObjectWithHost:host
                                                                       key:kKey
                                                             creationBlock:gCreateNewObject];
                   return gCreateNewObject();
                 }]);
}

- (void)testReentrySameHostDifferentKey {
  id host = gCreateNewObject();
  [FIRAppAssociationRegistration registeredObjectWithHost:host
                                                      key:kKey1
                                            creationBlock:^id _Nullable() {
                                              [FIRAppAssociationRegistration
                                                  registeredObjectWithHost:host
                                                                       key:kKey2
                                                             creationBlock:gCreateNewObject];
                                              return gCreateNewObject();
                                            }];
  // Expect no exception raised.
}

- (void)testReentryDifferentHostSameKey {
  id host1 = gCreateNewObject();
  id host2 = gCreateNewObject();
  [FIRAppAssociationRegistration registeredObjectWithHost:host1
                                                      key:kKey
                                            creationBlock:^id _Nullable() {
                                              [FIRAppAssociationRegistration
                                                  registeredObjectWithHost:host2
                                                                       key:kKey
                                                             creationBlock:gCreateNewObject];
                                              return gCreateNewObject();
                                            }];
  // Expect no exception raised.
}

- (void)testReentryDifferentHostDifferentKey {
  id host1 = gCreateNewObject();
  id host2 = gCreateNewObject();
  [FIRAppAssociationRegistration registeredObjectWithHost:host1
                                                      key:kKey1
                                            creationBlock:^id _Nullable() {
                                              [FIRAppAssociationRegistration
                                                  registeredObjectWithHost:host2
                                                                       key:kKey2
                                                             creationBlock:gCreateNewObject];
                                              return gCreateNewObject();
                                            }];
  // Expect no exception raised.
}

@end