-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathAnalyzerApiClientTest.cs
125 lines (116 loc) · 3.75 KB
/
AnalyzerApiClientTest.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
using ArangoDBNetStandard;
using ArangoDBNetStandard.AnalyzerApi;
using ArangoDBNetStandard.AnalyzerApi.Models;
using System.Collections.Generic;
using System.Net;
using System.Threading.Tasks;
using Xunit;
namespace ArangoDBNetStandardTest.AnalyzerApi
{
public class AnalyzerApiClientTest : IClassFixture<AnalyzerApiClientTestFixture>, IAsyncLifetime
{
private AnalyzerApiClient _analyzerApi;
private ArangoDBClient _adb;
public AnalyzerApiClientTest(AnalyzerApiClientTestFixture fixture)
{
_adb = fixture.ArangoDBClient;
_analyzerApi = _adb.Analyzer;
}
public Task InitializeAsync()
{
return Task.CompletedTask;
}
public Task DisposeAsync()
{
return Task.CompletedTask;
}
[Fact]
[Trait("Feature", "Analyzer")]
public async Task GetAllAnalyzersAsync_ShouldSucceed()
{
var res = await _analyzerApi.GetAllAnalyzersAsync();
Assert.Equal(HttpStatusCode.OK, res.Code);
Assert.False(res.Error);
}
[Fact]
[Trait("Feature", "Analyzer")]
public async Task PostAnalyzerAsync_ShouldSucceed()
{
var res = await _analyzerApi.PostAnalyzerAsync(
new Analyzer()
{
Name = "text_sc",
Type = "identity",
Features = new List<string>()
{
"frequency",
"position",
"norm"
}
}
);
Assert.NotNull(res);
Assert.NotNull(res.Name);
}
[Fact]
[Trait("Feature", "Analyzer")]
public async Task PostAnalyzerAsync_ShouldThrow_WhenAnalyzerIsInvalid()
{
try
{
//This call should fail because...
var res = await _analyzerApi.PostAnalyzerAsync(
new Analyzer()
{
Name = "text_sc",
Type = "collection",
Features = new List<string>()
{
"frequency",
"position",
"norm"
}
}
);
}
catch (ApiErrorException ex)
{
Assert.NotNull(ex);
Assert.NotNull(ex.ApiError);
Assert.True(ex.ApiError.Error);
}
}
[Fact]
[Trait("Feature", "Analyzer")]
public async Task GetAnalyzerAsync_ShouldSucceed()
{
var allRes = await _analyzerApi.GetAllAnalyzersAsync();
var firstName = allRes.Result[0].Name;
var res = await _analyzerApi.GetAnalyzerAsync(firstName);
Assert.Equal(HttpStatusCode.OK, res.Code);
Assert.False(res.Error);
}
[Fact]
[Trait("Feature", "Analyzer")]
public async Task DeleteAnalyzerAsync_ShouldSucceed()
{
var name = "text_mu";
var createRes = await _analyzerApi.PostAnalyzerAsync(
new Analyzer()
{
Name = name,
Type = "identity",
Features = new List<string>()
{
"frequency",
"position",
"norm"
}
}
);
var res = await _analyzerApi.DeleteAnalyzerAsync(name);
Assert.Equal(HttpStatusCode.OK, res.Code);
Assert.False(res.Error);
}
}
}