-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathOdataServiceTest.cs
141 lines (127 loc) · 5.06 KB
/
OdataServiceTest.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
namespace OData2Poco.Tests;
using NUnit.Framework;
using OData2Poco.Http;
using System;
using System.Net;
using System.Net.Http.Headers;
using static OData2Poco.Fake.TestCaseSources;
[Category("OdataService")]
public class OdataServiceTest
{
private PocoSetting _pocoSetting = new PocoSetting()
{
CodeFilename = TestSample.DemoCs,
};
private HttpClient CreateClient()
{
var handler = new HttpClientHandler()
{
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
};
return new HttpClient(handler);
}
[Test]
public void Insure_valid_service_url()
{
OdataService.Instance.ShowWireMockServerInfo();
Assert.Multiple(() =>
{
Assert.That(OdataService.Trippin, Is.Not.Empty);
Assert.That(OdataService.TrippinBasic, Is.Not.Empty);
Assert.That(OdataService.TrippinBearer, Is.Not.Empty);
Assert.That(OdataService.Northwind, Is.Not.Empty);
Assert.That(OdataService.Northwind2, Is.Not.Empty);
Assert.That(OdataService.Northwind3, Is.Not.Empty);
Assert.That(OdataService.Northwind4, Is.Not.Empty);
});
}
[Test]
public async Task TrippinBasic_ShouldReturn_ok_WithBasicAuthAsync()
{
var url = new Uri($@"{OdataService.TrippinBasic}\$metadata");
using var client = CreateClient();
client.DefaultRequestHeaders.Authorization =
new AuthenticationHeaderValue("Basic", "user:secret".ToBase64());
var response = await client.GetAsync(url).ConfigureAwait(false);
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
Assert.Multiple(() =>
{
Assert.That(response.IsSuccessStatusCode, Is.True);
Assert.That(content, Does.StartWith("""<?xml version="1.0" encoding="UTF-8"?>""").IgnoreCase);
});
}
[Test]
public async Task TrippinBearer_ShouldReturn_ok_with_BearerAuthAsync()
{
using var client = CreateClient();
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", "secret_token");
var url = new Uri($@"{OdataService.TrippinBearer}\$metadata");
var response = await client.GetAsync(url).ConfigureAwait(false);
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
Assert.Multiple(() =>
{
Assert.That(response.IsSuccessStatusCode, Is.True);
Assert.That(content, Does.StartWith("""<?xml version="1.0" encoding="UTF-8"?>""").IgnoreCase);
});
}
[Test]
public async Task Trippin_ShouldReturn_ok_WithNo_AuthAsync()
{
using var client = CreateClient();
var url = new Uri($@"{OdataService.Trippin}\$metadata");
var response = await client.GetAsync(url).ConfigureAwait(false);
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
Assert.Multiple(() =>
{
Assert.That(response.IsSuccessStatusCode, Is.True);
Assert.That(content, Does.StartWith("""<?xml version="1.0" encoding="UTF-8"?>""").IgnoreCase);
});
}
[Test]
[TestCaseSource(typeof(TestCaseSources), nameof(TestMockCases))]
public async Task No_auth_service_should_work(string path, string version)
{
using var client = CreateClient();
var url = new Uri($@"{path}\$metadata");
var response = await client.GetAsync(url).ConfigureAwait(false);
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
Assert.Multiple(() =>
{
Assert.That(response.IsSuccessStatusCode, Is.True);
Assert.That(content, Does.Contain("EntityType").IgnoreCase);
});
}
[Test]
[TestCaseSource(typeof(TestCaseSources), nameof(TestMockCases))]
public async Task OdataService_mock_test(string url, string version)
{
var connString = new OdataConnectionString
{
ServiceUrl = url,
Authenticate = AuthenticationType.None
};
var client = await CustomHttpClient.CreateAsync(connString, _pocoSetting)
.ConfigureAwait(false);
var response = await client.ReadMetaDataAsync().ConfigureAwait(false);
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
Assert.Multiple(() =>
{
Assert.That(response.IsSuccessStatusCode, Is.True);
Assert.That(content, Does.Contain("EntityType").IgnoreCase);
});
}
[Test]
public async Task OdataService_mock_test2()
{
var url = OdataService.Northwind4;
var connString = new OdataConnectionString
{
ServiceUrl = url,
Authenticate = AuthenticationType.None
};
var client = await CustomHttpClient.CreateAsync(connString, _pocoSetting)
.ConfigureAwait(false);
var response = await client.ReadMetaDataAsync().ConfigureAwait(false);
Assert.That(response.IsSuccessStatusCode, Is.True);
}
}