forked from NetCoreStack/Proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProxyCreationTests.cs
More file actions
249 lines (218 loc) · 7.91 KB
/
Copy pathProxyCreationTests.cs
File metadata and controls
249 lines (218 loc) · 7.91 KB
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
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using NetCoreStack.Contracts;
using NetCoreStack.Proxy.Test.Contracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Xunit;
namespace NetCoreStack.Proxy.Tests
{
public class ProxyCreationTests
{
private readonly string _someKey = "248fd6db0ae44ec48169fa2391b067da";
protected IServiceProvider Resolver { get; }
protected IConfiguration Configuration { get; }
public ProxyCreationTests()
{
Resolver = TestHelper.HttpContext.RequestServices;
Configuration = TestHelper.Configuration;
}
[Fact]
public async Task TaskOperationTest()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var task = guidelineApi.TaskOperation();
await task;
}
[Fact]
public async Task GetComplexTypeTest()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var task = guidelineApi.GetComplexType(TypesModelHelper.GetComplexTypeModel());
await task;
}
[Fact]
public async Task PrimitiveReturnTest()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var task = guidelineApi.PrimitiveReturn(int.MaxValue, "some string", long.MaxValue, DateTime.Now);
await task;
}
[Fact]
public async Task GetWithComplexReferenceTypeTest()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var task = guidelineApi.GetWithComplexReferenceType(new CollectionRequest
{
Draw = 1,
Filters = "",
Length = 10,
Metadata = typeof(ComplexTypeModel).FullName,
Start = 0,
Search = null,
Text = "",
Columns = new List<Column>
{
new Column
{
Composer = "",
Data = nameof(ComplexTypeModel.Int),
Meta = typeof(int).Name,
Search = null,
Searchable = true,
Orderable = true
},
new Column
{
Composer = "",
Data = nameof(ComplexTypeModel.String),
Meta = typeof(String).Name,
Search = null,
Searchable = false,
Orderable = false
}
},
Order = new List<OrderDescriptor>
{
new OrderDescriptor
{
ColumnIndex = 0,
Direction = ListSortDirection.Ascending
}
}
});
await task;
}
[Fact]
public async Task TaskCallHttpPostWithReferenceTypeParameterTest()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
await guidelineApi.TaskComplexTypeModel(TypesModelHelper.GetComplexTypeModel());
}
[Fact]
public async Task TaskActionBarMultipartFormDataTest()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
await guidelineApi.TaskActionBarMultipartFormData(new Bar
{
String = "Bar string value!",
someint = 6,
SomeEnum = SomeEnum.Value2,
Foo = new Foo { IEnumerableInt = new[] { 1, 3, 5, 7, 9 }, String = "Foo string value!" }
});
}
[Fact]
public async Task TaskActionBarSimpleXml()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
await guidelineApi.TaskActionBarSimpleXml(new BarSimple
{
String = "Bar string value!",
someint = 6,
SomeEnum = SomeEnum.Value2,
});
}
[Fact]
public async Task GenericTaskResultCallTest()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var items = await guidelineApi.GetEnumerableModels();
Assert.True(items != null);
Assert.True(items.Count() == 4);
}
[Fact]
public async Task GetCollectionStreamTest()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var collection = await guidelineApi.GetCollectionStreamTask();
Assert.True(collection != null);
Assert.True(collection.Data.Count() == 5);
}
[Fact]
public async Task TaskSingleFileModel()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var model = new SingleFileModel
{
File = TestHelper.GetFormFile("file")
};
await guidelineApi.TaskSingleFileModel(model);
Assert.True(true);
}
[Fact]
public async Task TaskKeyAndSingleFileModel()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var model = new SingleFileModel
{
File = TestHelper.GetFormFile("file")
};
await guidelineApi.TaskKeyAndSingleFileModel(_someKey, model);
Assert.True(true);
}
[Fact]
public async Task TaskKeyAndSingleFileAndPropsModel()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var model = new SingleFileAndPropsModel
{
Int = 6,
String = "Some string value!",
File = TestHelper.GetFormFile("file")
};
await guidelineApi.TaskKeyAndSingleFileAndPropsModel(_someKey, model);
Assert.True(true);
}
[Fact]
public async Task TaskEnumerableFileModel()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var model = new EnumerableFileModel
{
Files = new[] { TestHelper.GetFormFile("files", "file1.txt"), TestHelper.GetFormFile("files", "file2.txt") }
};
await guidelineApi.TaskEnumerableFileModel(model);
Assert.True(true);
}
[Fact]
public async Task TaskKeyAndEnumerableFileModel()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var model = new EnumerableFileModel
{
Files = new[] { TestHelper.GetFormFile("files", "file1.txt"), TestHelper.GetFormFile("files", "file2.txt") }
};
await guidelineApi.TaskKeyAndEnumerableFileModel(_someKey, model);
Assert.True(true);
}
[Fact]
public async Task CreateOrUpdateNoBodyKeyTest()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var result = await guidelineApi.CreateOrUpdateKey(_someKey);
Assert.True(result);
}
[Fact]
public async Task CreateOrUpdateKeyTest()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
var result = await guidelineApi.CreateOrUpdateKey(_someKey, new Bar
{
String = "Bar string value!",
someint = 6,
SomeEnum = SomeEnum.Value2,
Foo = new Foo { IEnumerableInt = new[] { 1, 3, 5, 7, 9 }, String = "Foo string value!" }
});
Assert.True(result);
}
[Fact]
public async Task TaskActionDeleteTest()
{
var guidelineApi = Resolver.GetService<IGuidelineApi>();
await guidelineApi.TaskActionDelete(1);
Assert.True(true);
}
}
}