aboutsummaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce.Tests/InitialisationTests.cs
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2021-04-04 17:33:08 +0200
committerivarlovlie <git@ivarlovlie.no>2021-04-04 17:33:08 +0200
commit010aef0cbb5b3171697b35f4b849d1ff31a1e848 (patch)
tree4e3f6c9c71e6ea86f5df591ab3d216b137dfe41c /src/IOL.VippsEcommerce.Tests/InitialisationTests.cs
parent5c5ba05c49ff3bacfc5a29b21e3d9683e6396ad5 (diff)
downloaddotnet-vipps-ecommerce-010aef0cbb5b3171697b35f4b849d1ff31a1e848.tar.xz
dotnet-vipps-ecommerce-010aef0cbb5b3171697b35f4b849d1ff31a1e848.zip
add configuration file
Diffstat (limited to 'src/IOL.VippsEcommerce.Tests/InitialisationTests.cs')
-rw-r--r--src/IOL.VippsEcommerce.Tests/InitialisationTests.cs54
1 files changed, 0 insertions, 54 deletions
diff --git a/src/IOL.VippsEcommerce.Tests/InitialisationTests.cs b/src/IOL.VippsEcommerce.Tests/InitialisationTests.cs
deleted file mode 100644
index aa05a7d..0000000
--- a/src/IOL.VippsEcommerce.Tests/InitialisationTests.cs
+++ /dev/null
@@ -1,54 +0,0 @@
-using IOL.VippsEcommerce.Models;
-using Microsoft.Extensions.DependencyInjection;
-using Xunit;
-using Xunit.Abstractions;
-
-namespace IOL.VippsEcommerce.Tests
-{
- public class InitialisationTests
- {
- private readonly ITestOutputHelper _helper;
-
- public InitialisationTests(ITestOutputHelper helper) {
- _helper = helper;
- }
-
- [Fact]
- public void Succeed_On_Valid_Minimal_Configuration() {
- var vippsEcommerceService = Helpers.GetVippsEcommerceService(o => {
- o.ApiUrl = "https://validuri.no";
- o.ClientId = "asdf";
- o.ClientSecret = "asdf";
- o.SecondarySubscriptionKey = "asdf";
- });
-
- vippsEcommerceService.Configuration.Verify();
- }
-
- [Fact]
- public void Configuration_Follows_Through_Initialisation() {
- var vippsEcommerceService = Helpers.GetVippsEcommerceService(o => {
- o.ApiUrl = "https://validuri.no";
- o.ClientId = "asdf";
- o.ClientSecret = "asdf";
- o.SecondarySubscriptionKey = "asdf";
- o.PrimarySubscriptionKey = "asdf";
- o.SystemName = "asdf";
- o.SystemVersion = "asdf";
- o.SystemPluginName = "asdf";
- o.SystemPluginVersion = "asdf";
- o.MerchantSerialNumber = "asdf";
- o.CacheDirectoryPath = "asdf";
- o.CacheEncryptionKey = "asdf";
- o.ConfigurationMode = VippsConfigurationMode.ONLY_OBJECT;
- });
-
- foreach (var prop in typeof(VippsConfiguration).GetProperties()) {
- var value = prop.GetValue(vippsEcommerceService.Configuration, null);
- _helper.WriteLine(prop.Name);
- _helper.WriteLine(value?.ToString() ?? "EMPTY");
- Assert.False(value == default);
- }
- }
- }
-} \ No newline at end of file