-
-
Notifications
You must be signed in to change notification settings - Fork 260
/
Copy pathRelationTests.cs
372 lines (303 loc) · 14.1 KB
/
RelationTests.cs
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using Parse.Abstractions.Infrastructure.Control;
using Parse.Abstractions.Infrastructure;
using Parse.Abstractions.Internal;
using Parse.Abstractions.Platform.Objects;
using Parse.Infrastructure;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Parse.Platform.Objects;
using System.Threading;
using Parse.Abstractions.Platform.Users;
namespace Parse.Tests;
[TestClass]
public class RelationTests
{
[ParseClassName("TestObject")]
private class TestObject : ParseObject { }
[ParseClassName("Friend")]
private class Friend : ParseObject { }
private ParseClient Client { get; set; }
[TestInitialize]
public void SetUp()
{
// Initialize the client and ensure the instance is set
Client = new ParseClient(new ServerConnectionData { Test = true });
Client.Publicize();
// Register the test classes
Client.RegisterSubclass(typeof(TestObject));
Client.RegisterSubclass(typeof(Friend));
Client.RegisterSubclass(typeof(ParseUser));
Client.RegisterSubclass(typeof(ParseSession));
Client.RegisterSubclass(typeof(ParseUser));
// **--- Mocking Setup ---**
var hub = new MutableServiceHub(); // Use MutableServiceHub for mocking
var mockUserController = new Mock<IParseUserController>();
var mockObjectController = new Mock<IParseObjectController>();
// **Mock SignUpAsync for ParseUser:**
mockUserController
.Setup(controller => controller.SignUpAsync(
It.IsAny<IObjectState>(),
It.IsAny<IDictionary<string, IParseFieldOperation>>(),
It.IsAny<IServiceHub>(),
It.IsAny<CancellationToken>()))
.ReturnsAsync(new MutableObjectState { ObjectId = "some0neTol4v4" }); // Predefined ObjectId for User
// **Mock SaveAsync for ParseObject (Friend objects):**
int objectSaveCounter = 1; // Counter for Friend ObjectIds
mockObjectController
.Setup(controller => controller.SaveAsync(
It.IsAny<IObjectState>(),
It.IsAny<IDictionary<string, IParseFieldOperation>>(),
It.IsAny<string>(),
It.IsAny<IServiceHub>(),
It.IsAny<CancellationToken>()))
.ReturnsAsync(() => // Use a lambda to generate different ObjectIds for each Friend
{
return new MutableObjectState { ObjectId = $"mockFriendObjectId{objectSaveCounter++}" };
});
// **Inject Mocks into ServiceHub:**
hub.UserController = mockUserController.Object;
hub.ObjectController = mockObjectController.Object;
}
[TestCleanup]
public void TearDown() => (Client.Services as ServiceHub).Reset();
[TestMethod]
public void TestRelationQuery()
{
ParseObject parent = new ServiceHub { }.CreateObjectWithoutData("Foo", "abcxyz");
ParseRelation<ParseObject> relation = parent.GetRelation<ParseObject>("child");
ParseQuery<ParseObject> query = relation.Query;
// Client side, the query will appear to be for the wrong class.
// When the server recieves it, the class name will be redirected using the 'redirectClassNameForKey' option.
Assert.AreEqual("Foo", query.GetClassName());
IDictionary<string, object> encoded = query.BuildParameters();
Assert.AreEqual("child", encoded["redirectClassNameForKey"]);
}
[TestMethod]
[Description("Tests AddRelationToUserAsync throws exception when user is null")] // Mock difficulty: 1
public async Task AddRelationToUserAsync_ThrowsException_WhenUserIsNull()
{
var relatedObjects = new List<ParseObject>
{
new ParseObject("Friend", Client.Services) { ["name"] = "Friend1" }
};
await Assert.ThrowsExceptionAsync<ArgumentNullException>(() => UserManagement.AddRelationToUserAsync(null, "friends", relatedObjects));
}
[TestMethod]
[Description("Tests AddRelationToUserAsync throws exception when relationfield is null")] // Mock difficulty: 1
public async Task AddRelationToUserAsync_ThrowsException_WhenRelationFieldIsNull()
{
var user = new ParseUser() { Username = "TestUser", Password = "TestPass", Services = Client.Services };
await user.SignUpAsync();
var relatedObjects = new List<ParseObject>
{
new ParseObject("Friend", Client.Services) { ["name"] = "Friend1" }
};
await Assert.ThrowsExceptionAsync<ArgumentException>(() => UserManagement.AddRelationToUserAsync(user, null, relatedObjects));
}
[TestMethod]
[Description("Tests UpdateUserRelationAsync throws exception when user is null")] // Mock difficulty: 1
public async Task UpdateUserRelationAsync_ThrowsException_WhenUserIsNull()
{
var relatedObjectsToAdd = new List<ParseObject>
{
new ParseObject("Friend", Client.Services) { ["name"] = "Friend1" }
};
var relatedObjectsToRemove = new List<ParseObject>
{
new ParseObject("Friend", Client.Services) { ["name"] = "Friend2" }
};
await Assert.ThrowsExceptionAsync<ArgumentNullException>(() => UserManagement.UpdateUserRelationAsync(null, "friends", relatedObjectsToAdd, relatedObjectsToRemove));
}
[TestMethod]
[Description("Tests UpdateUserRelationAsync throws exception when relationfield is null")] // Mock difficulty: 1
public async Task UpdateUserRelationAsync_ThrowsException_WhenRelationFieldIsNull()
{
var user = new ParseUser() { Username = "TestUser", Password = "TestPass", Services = Client.Services };
await user.SignUpAsync();
var relatedObjectsToAdd = new List<ParseObject>
{
new ParseObject("Friend", Client.Services) { ["name"] = "Friend1" }
};
var relatedObjectsToRemove = new List<ParseObject>
{
new ParseObject("Friend", Client.Services) { ["name"] = "Friend2" }
};
await Assert.ThrowsExceptionAsync<ArgumentException>(() => UserManagement.UpdateUserRelationAsync(user, null, relatedObjectsToAdd, relatedObjectsToRemove));
}
[TestMethod]
[Description("Tests DeleteUserRelationAsync throws exception when user is null")] // Mock difficulty: 1
public async Task DeleteUserRelationAsync_ThrowsException_WhenUserIsNull()
{
await Assert.ThrowsExceptionAsync<ArgumentNullException>(() => UserManagement.DeleteUserRelationAsync(null, "friends"));
}
[TestMethod]
[Description("Tests DeleteUserRelationAsync throws exception when relationfield is null")] // Mock difficulty: 1
public async Task DeleteUserRelationAsync_ThrowsException_WhenRelationFieldIsNull()
{
var user = new ParseUser() { Username = "TestUser", Password = "TestPass", Services = Client.Services };
await user.SignUpAsync();
await Assert.ThrowsExceptionAsync<ArgumentException>(() => UserManagement.DeleteUserRelationAsync(user, null));
}
[TestMethod]
[Description("Tests GetUserRelationsAsync throws exception when user is null")] // Mock difficulty: 1
public async Task GetUserRelationsAsync_ThrowsException_WhenUserIsNull()
{
await Assert.ThrowsExceptionAsync<ArgumentNullException>(() => UserManagement.GetUserRelationsAsync(null, "friends"));
}
[TestMethod]
[Description("Tests GetUserRelationsAsync throws exception when relationfield is null")] // Mock difficulty: 1
public async Task GetUserRelationsAsync_ThrowsException_WhenRelationFieldIsNull()
{
var user = new ParseUser() { Username = "TestUser", Password = "TestPass", Services = Client.Services };
await user.SignUpAsync();
await Assert.ThrowsExceptionAsync<ArgumentException>(() => UserManagement.GetUserRelationsAsync(user, null));
}
[TestMethod]
[Description("Tests that AddRelationToUserAsync throws when a related object is unsaved")]
public async Task AddRelationToUserAsync_ThrowsException_WhenRelatedObjectIsUnsaved()
{
// Arrange: Create and sign up a test user.
var user = new ParseUser() { Username = "TestUser", Password = "TestPass", Services = Client.Services };
await user.SignUpAsync();
// Create an unsaved Friend object (do NOT call SaveAsync).
var unsavedFriend = new ParseObject("Friend", Client.Services) { ["name"] = "UnsavedFriend" };
var relatedObjects = new List<ParseObject> { unsavedFriend };
// Act & Assert: Expect an exception when trying to add an unsaved object.
await Assert.ThrowsExceptionAsync<ArgumentException>(() =>
UserManagement.AddRelationToUserAsync(user, "friends", relatedObjects));
}
}
public static class UserManagement
{
public static async Task AddRelationToUserAsync(ParseUser user, string relationField, IList<ParseObject> relatedObjects)
{
if (user == null)
{
throw new ArgumentNullException(nameof(user), "User must not be null.");
}
if (string.IsNullOrEmpty(relationField))
{
throw new ArgumentException("Relation field must not be null or empty.", nameof(relationField));
}
if (relatedObjects == null || relatedObjects.Count == 0)
{
Debug.WriteLine("No objects provided to add to the relation.");
return;
}
var relation = user.GetRelation<ParseObject>(relationField);
foreach (var obj in relatedObjects)
{
relation.Add(obj);
}
await user.SaveAsync();
Debug.WriteLine($"Added {relatedObjects.Count} objects to the '{relationField}' relation for user '{user.Username}'.");
}
public static async Task UpdateUserRelationAsync(ParseUser user, string relationField, IList<ParseObject> toAdd, IList<ParseObject> toRemove)
{
if (user == null)
{
throw new ArgumentNullException(nameof(user), "User must not be null.");
}
if (string.IsNullOrEmpty(relationField))
{
throw new ArgumentException("Relation field must not be null or empty.", nameof(relationField));
}
var relation = user.GetRelation<ParseObject>(relationField);
// Add objects to the relation
if (toAdd != null && toAdd.Count > 0)
{
foreach (var obj in toAdd)
{
relation.Add(obj);
}
Debug.WriteLine($"Added {toAdd.Count} objects to the '{relationField}' relation.");
}
// Remove objects from the relation
if (toRemove != null && toRemove.Count > 0)
{
foreach (var obj in toRemove)
{
relation.Remove(obj);
}
Debug.WriteLine($"Removed {toRemove.Count} objects from the '{relationField}' relation.");
}
await user.SaveAsync();
}
public static async Task DeleteUserRelationAsync(ParseUser user, string relationField)
{
if (user == null)
{
throw new ArgumentNullException(nameof(user), "User must not be null.");
}
if (string.IsNullOrEmpty(relationField))
{
throw new ArgumentException("Relation field must not be null or empty.", nameof(relationField));
}
var relation = user.GetRelation<ParseObject>(relationField);
var relatedObjects = await relation.Query.FindAsync();
foreach (var obj in relatedObjects)
{
relation.Remove(obj);
}
await user.SaveAsync();
Debug.WriteLine($"Removed all objects from the '{relationField}' relation for user '{user.Username}'.");
}
public static async Task ManageUserRelationsAsync(ParseClient client)
{
// Get the current user
var user = await ParseClient.Instance.GetCurrentUser();
if (user == null)
{
Debug.WriteLine("No user is currently logged in.");
return;
}
const string relationField = "friends"; // Example relation field name
// Create related objects to add
var relatedObjectsToAdd = new List<ParseObject>
{
new ParseObject("Friend", client.Services) { ["name"] = "Alice" },
new ParseObject("Friend", client.Services) { ["name"] = "Bob" }
};
// Save related objects to the server before adding to the relation
foreach (var obj in relatedObjectsToAdd)
{
await obj.SaveAsync();
}
// Add objects to the relation
await AddRelationToUserAsync(user, relationField, relatedObjectsToAdd);
// Query the relation
var relatedObjects = await GetUserRelationsAsync(user, relationField);
// Update the relation (add and remove objects)
var relatedObjectsToRemove = new List<ParseObject> { relatedObjects[0] }; // Remove the first related object
var newObjectsToAdd = new List<ParseObject>
{
new ParseObject("Friend", client.Services) { ["name"] = "Charlie" }
};
foreach (var obj in newObjectsToAdd)
{
await obj.SaveAsync();
}
await UpdateUserRelationAsync(user, relationField, newObjectsToAdd, relatedObjectsToRemove);
}
public static async Task<IList<ParseObject>> GetUserRelationsAsync(ParseUser user, string relationField)
{
if (user == null)
{
throw new ArgumentNullException(nameof(user), "User must not be null.");
}
if (string.IsNullOrEmpty(relationField))
{
throw new ArgumentException("Relation field must not be null or empty.", nameof(relationField));
}
var relation = user.GetRelation<ParseObject>(relationField);
var results = await relation.Query.FindAsync();
Debug.WriteLine($"Retrieved {results.Count()} objects from the '{relationField}' relation for user '{user.Username}'.");
return results.ToList();
}
}