-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #338 from PinguApps/update-preferences
Implemented Update preferences
- Loading branch information
Showing
8 changed files
with
272 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
120 changes: 120 additions & 0 deletions
120
tests/PinguApps.Appwrite.Client.Tests/Clients/Teams/TeamsClientTests.UpdatePreferences.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
using System.Net; | ||
using PinguApps.Appwrite.Client.Clients; | ||
using PinguApps.Appwrite.Shared.Requests.Teams; | ||
using PinguApps.Appwrite.Shared.Tests; | ||
using PinguApps.Appwrite.Shared.Utils; | ||
using RichardSzalay.MockHttp; | ||
|
||
namespace PinguApps.Appwrite.Client.Tests.Clients.Teams; | ||
public partial class TeamsClientTests | ||
{ | ||
[Fact] | ||
public async Task UpdatePreferences_ShouldReturnSuccess_WhenApiCallSucceeds() | ||
{ | ||
// Arrange | ||
var request = new UpdatePreferencesRequest | ||
{ | ||
TeamId = IdUtils.GenerateUniqueId(), | ||
Preferences = new Dictionary<string, string> | ||
{ | ||
{ "key1", "value1" }, | ||
{ "key2", "value2" } | ||
} | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Put, $"{TestConstants.Endpoint}/teams/{request.TeamId}/prefs") | ||
.ExpectedHeaders(true) | ||
.WithJsonContent(request, _jsonSerializerOptions) | ||
.Respond(TestConstants.AppJson, TestConstants.PreferencesResponse); | ||
|
||
_appwriteClient.SetSession(TestConstants.Session); | ||
|
||
// Act | ||
var result = await _appwriteClient.Teams.UpdatePreferences(request); | ||
|
||
// Assert | ||
Assert.True(result.Success); | ||
} | ||
|
||
[Fact] | ||
public async Task UpdatePreferences_ShouldReturnError_WhenSessionIsNull() | ||
{ | ||
// Arrange | ||
var request = new UpdatePreferencesRequest | ||
{ | ||
TeamId = IdUtils.GenerateUniqueId(), | ||
Preferences = new Dictionary<string, string> | ||
{ | ||
{ "key1", "value1" }, | ||
{ "key2", "value2" } | ||
} | ||
}; | ||
|
||
// Act | ||
var result = await _appwriteClient.Teams.UpdatePreferences(request); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal(ISessionAware.SessionExceptionMessage, result.Result.AsT2.Message); | ||
} | ||
|
||
[Fact] | ||
public async Task UpdatePreferences_ShouldHandleException_WhenApiCallFails() | ||
{ | ||
// Arrange | ||
var request = new UpdatePreferencesRequest | ||
{ | ||
TeamId = IdUtils.GenerateUniqueId(), | ||
Preferences = new Dictionary<string, string> | ||
{ | ||
{ "key1", "value1" }, | ||
{ "key2", "value2" } | ||
} | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Put, $"{TestConstants.Endpoint}/teams/{request.TeamId}/prefs") | ||
.ExpectedHeaders(true) | ||
.WithJsonContent(request, _jsonSerializerOptions) | ||
.Respond(HttpStatusCode.BadRequest, TestConstants.AppJson, TestConstants.AppwriteError); | ||
|
||
_appwriteClient.SetSession(TestConstants.Session); | ||
|
||
// Act | ||
var result = await _appwriteClient.Teams.UpdatePreferences(request); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsAppwriteError); | ||
} | ||
|
||
[Fact] | ||
public async Task UpdatePreferences_ShouldReturnErrorResponse_WhenExceptionOccurs() | ||
{ | ||
// Arrange | ||
var request = new UpdatePreferencesRequest | ||
{ | ||
TeamId = IdUtils.GenerateUniqueId(), | ||
Preferences = new Dictionary<string, string> | ||
{ | ||
{ "key1", "value1" }, | ||
{ "key2", "value2" } | ||
} | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Put, $"{TestConstants.Endpoint}/teams/{request.TeamId}/prefs") | ||
.ExpectedHeaders(true) | ||
.WithJsonContent(request, _jsonSerializerOptions) | ||
.Throw(new HttpRequestException("An error occurred")); | ||
|
||
_appwriteClient.SetSession(TestConstants.Session); | ||
|
||
// Act | ||
var result = await _appwriteClient.Teams.UpdatePreferences(request); | ||
|
||
// Assert | ||
Assert.False(result.Success); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal("An error occurred", result.Result.AsT2.Message); | ||
} | ||
} |
90 changes: 90 additions & 0 deletions
90
tests/PinguApps.Appwrite.Server.Tests/Clients/Teams/TeamsClientTests.UpdatePreferences.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
using System.Net; | ||
using PinguApps.Appwrite.Shared.Requests.Teams; | ||
using PinguApps.Appwrite.Shared.Tests; | ||
using PinguApps.Appwrite.Shared.Utils; | ||
using RichardSzalay.MockHttp; | ||
|
||
namespace PinguApps.Appwrite.Server.Tests.Clients.Teams; | ||
public partial class TeamsClientTests | ||
{ | ||
[Fact] | ||
public async Task UpdatePreferences_ShouldReturnSuccess_WhenApiCallSucceeds() | ||
{ | ||
// Arrange | ||
var request = new UpdatePreferencesRequest | ||
{ | ||
TeamId = IdUtils.GenerateUniqueId(), | ||
Preferences = new Dictionary<string, string> | ||
{ | ||
{ "key1", "value1" }, | ||
{ "key2", "value2" } | ||
} | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Put, $"{TestConstants.Endpoint}/teams/{request.TeamId}/prefs") | ||
.ExpectedHeaders() | ||
.WithJsonContent(request, _jsonSerializerOptions) | ||
.Respond(TestConstants.AppJson, TestConstants.PreferencesResponse); | ||
|
||
// Act | ||
var result = await _appwriteClient.Teams.UpdatePreferences(request); | ||
|
||
// Assert | ||
Assert.True(result.Success); | ||
} | ||
|
||
[Fact] | ||
public async Task UpdatePreferences_ShouldHandleException_WhenApiCallFails() | ||
{ | ||
// Arrange | ||
var request = new UpdatePreferencesRequest | ||
{ | ||
TeamId = IdUtils.GenerateUniqueId(), | ||
Preferences = new Dictionary<string, string> | ||
{ | ||
{ "key1", "value1" }, | ||
{ "key2", "value2" } | ||
} | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Put, $"{TestConstants.Endpoint}/teams/{request.TeamId}/prefs") | ||
.ExpectedHeaders() | ||
.WithJsonContent(request, _jsonSerializerOptions) | ||
.Respond(HttpStatusCode.BadRequest, TestConstants.AppJson, TestConstants.AppwriteError); | ||
|
||
// Act | ||
var result = await _appwriteClient.Teams.UpdatePreferences(request); | ||
|
||
// Assert | ||
Assert.True(result.IsError); | ||
Assert.True(result.IsAppwriteError); | ||
} | ||
|
||
[Fact] | ||
public async Task UpdatePreferences_ShouldReturnErrorResponse_WhenExceptionOccurs() | ||
{ | ||
// Arrange | ||
var request = new UpdatePreferencesRequest | ||
{ | ||
TeamId = IdUtils.GenerateUniqueId(), | ||
Preferences = new Dictionary<string, string> | ||
{ | ||
{ "key1", "value1" }, | ||
{ "key2", "value2" } | ||
} | ||
}; | ||
|
||
_mockHttp.Expect(HttpMethod.Put, $"{TestConstants.Endpoint}/teams/{request.TeamId}/prefs") | ||
.ExpectedHeaders() | ||
.WithJsonContent(request, _jsonSerializerOptions) | ||
.Throw(new HttpRequestException("An error occurred")); | ||
|
||
// Act | ||
var result = await _appwriteClient.Teams.UpdatePreferences(request); | ||
|
||
// Assert | ||
Assert.False(result.Success); | ||
Assert.True(result.IsInternalError); | ||
Assert.Equal("An error occurred", result.Result.AsT2.Message); | ||
} | ||
} |