-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathOpenGeminiAsyncClientFactoryTest.java
More file actions
139 lines (119 loc) · 5.04 KB
/
OpenGeminiAsyncClientFactoryTest.java
File metadata and controls
139 lines (119 loc) · 5.04 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
/*
* Copyright 2024 openGemini Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.opengemini.client.impl;
import io.opengemini.client.api.Address;
import io.opengemini.client.api.AuthConfig;
import io.opengemini.client.api.AuthType;
import io.opengemini.client.api.BatchConfig;
import io.opengemini.client.api.Configuration;
import io.opengemini.client.api.OpenGeminiException;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.List;
public class OpenGeminiAsyncClientFactoryTest implements FactoryTestCase {
private static Configuration configuration;
private static AuthConfig authConfig;
private static BatchConfig batchConfig;
@BeforeAll
public static void setUp() {
configuration = new Configuration();
authConfig = new AuthConfig();
batchConfig = new BatchConfig();
}
@Override
@Test
public void testGetClientWithNullAddresses() {
configuration.setAddresses(null);
Throwable actualException = Assertions.assertThrows(OpenGeminiException.class, () -> {
OpenGeminiClientFactory.create(configuration);
});
Assertions.assertEquals("must have at least one address", actualException.getMessage());
}
@Override
@Test
public void testGetClientWithEmptyAddresses() {
configuration.setAddresses(new ArrayList<>());
Throwable actualException = Assertions.assertThrows(OpenGeminiException.class, () -> {
OpenGeminiClientFactory.create(configuration);
});
Assertions.assertEquals("must have at least one address", actualException.getMessage());
}
@Override
@Test
public void testGetClientWithEmptyToken() {
configuration.setAddresses(List.of(new Address()));
authConfig.setAuthType(AuthType.TOKEN);
authConfig.setToken("");
configuration.setAuthConfig(authConfig);
Throwable actualException = Assertions.assertThrows(OpenGeminiException.class, () -> {
OpenGeminiClientFactory.create(configuration);
});
Assertions.assertEquals("invalid auth config due to empty token", actualException.getMessage());
}
@Override
@Test
public void testGetClientWithEmptyUserName() {
configuration.setAddresses(List.of(new Address()));
authConfig.setAuthType(AuthType.PASSWORD);
authConfig.setPassword("pass".toCharArray());
authConfig.setUsername("");
configuration.setAuthConfig(authConfig);
Throwable actualException = Assertions.assertThrows(OpenGeminiException.class, () -> {
OpenGeminiClientFactory.create(configuration);
});
Assertions.assertEquals("invalid auth config due to empty username", actualException.getMessage());
}
@Override
@Test
public void testGetClientWithNullPassword() {
configuration.setAddresses(List.of(new Address()));
authConfig.setAuthType(AuthType.PASSWORD);
authConfig.setPassword(null);
authConfig.setUsername("user");
configuration.setAuthConfig(authConfig);
Throwable actualException = Assertions.assertThrows(OpenGeminiException.class, () -> {
OpenGeminiClientFactory.create(configuration);
});
Assertions.assertEquals("invalid auth config due to empty password", actualException.getMessage());
}
@Override
@Test
public void testGetClientWithInvalidBatchInterval() {
configuration.setAddresses(List.of(new Address()));
authConfig.setAuthType(null);
batchConfig.setBatchInterval(-1);
configuration.setBatchConfig(batchConfig);
Throwable actualException = Assertions.assertThrows(OpenGeminiException.class, () -> {
OpenGeminiClientFactory.create(configuration);
});
Assertions.assertEquals("batch enabled, batch interval must be great than 0", actualException.getMessage());
}
@Override
@Test
public void testGetClientWithInvalidBatchSize() {
configuration.setAddresses(List.of(new Address()));
authConfig.setAuthType(null);
batchConfig.setBatchInterval(1);
batchConfig.setBatchSize(-1);
configuration.setBatchConfig(batchConfig);
Throwable actualException = Assertions.assertThrows(OpenGeminiException.class, () -> {
OpenGeminiClientFactory.create(configuration);
});
Assertions.assertEquals("batch enabled, batch size must be great than 0", actualException.getMessage());
}
}