-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathBigQueryPooledConnectionTest.java
More file actions
176 lines (149 loc) · 7.07 KB
/
BigQueryPooledConnectionTest.java
File metadata and controls
176 lines (149 loc) · 7.07 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
/*
* Copyright 2025 Google LLC
*
* 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
*
* https://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 com.google.cloud.bigquery.jdbc;
import static com.google.cloud.bigquery.jdbc.utils.TestUtilities.TestConnectionListener;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;
import java.io.IOException;
import java.sql.*;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
public class BigQueryPooledConnectionTest {
private BigQueryConnection bigQueryConnection;
private static final Long LISTENER_POOL_SIZE = 10L;
@BeforeEach
public void setUp() throws IOException, SQLException {
bigQueryConnection = mock(BigQueryConnection.class);
doReturn(LISTENER_POOL_SIZE).when(bigQueryConnection).getListenerPoolSize();
}
@Test
public void testGetPooledConnection() throws SQLException {
BigQueryPooledConnection pooledConnection = new BigQueryPooledConnection(bigQueryConnection);
assertFalse(pooledConnection.inUse());
assertEquals(LISTENER_POOL_SIZE, pooledConnection.getListenerPoolSize());
Connection connection = pooledConnection.getConnection();
assertNotNull(connection);
assertFalse(connection.isClosed());
assertTrue(pooledConnection.inUse());
}
@Test
public void testPooledConnectionClose() throws SQLException {
BigQueryPooledConnection pooledConnection = new BigQueryPooledConnection(bigQueryConnection);
assertFalse(pooledConnection.inUse());
assertEquals(LISTENER_POOL_SIZE, pooledConnection.getListenerPoolSize());
Connection connection = pooledConnection.getConnection();
assertNotNull(connection);
assertFalse(connection.isClosed());
assertTrue(pooledConnection.inUse());
connection.close();
assertFalse(pooledConnection.inUse());
}
@Test
public void testReuseConnectionAfterClose() throws SQLException {
BigQueryPooledConnection pooledConnection = new BigQueryPooledConnection(bigQueryConnection);
assertFalse(pooledConnection.inUse());
assertEquals(LISTENER_POOL_SIZE, pooledConnection.getListenerPoolSize());
Connection connection = pooledConnection.getConnection();
assertNotNull(connection);
assertFalse(connection.isClosed());
assertTrue(pooledConnection.inUse());
connection.close();
assertFalse(pooledConnection.inUse());
connection = pooledConnection.getConnection();
assertTrue(pooledConnection.inUse());
}
@Test
public void testAddConnectionListener() throws SQLException {
BigQueryPooledConnection pooledConnection = new BigQueryPooledConnection(bigQueryConnection);
assertEquals(LISTENER_POOL_SIZE, pooledConnection.getListenerPoolSize());
TestConnectionListener listner = new TestConnectionListener();
pooledConnection.addConnectionEventListener(listner);
assertTrue(pooledConnection.isListenerPooled(listner));
}
@Test
public void testRemoveConnectionListener() throws SQLException {
BigQueryPooledConnection pooledConnection = new BigQueryPooledConnection(bigQueryConnection);
assertEquals(LISTENER_POOL_SIZE, pooledConnection.getListenerPoolSize());
TestConnectionListener listner = new TestConnectionListener();
pooledConnection.addConnectionEventListener(listner);
assertEquals(0, listner.getConnectionClosedCount());
assertEquals(0, listner.getConnectionErrorCount());
assertTrue(pooledConnection.isListenerPooled(listner));
pooledConnection.removeConnectionEventListener(listner);
assertFalse(pooledConnection.isListenerPooled(listner));
}
@Test
public void testConnectionHandleClosedByConnection() throws SQLException {
BigQueryPooledConnection pooledConnection = new BigQueryPooledConnection(bigQueryConnection);
assertEquals(LISTENER_POOL_SIZE, pooledConnection.getListenerPoolSize());
assertFalse(pooledConnection.inUse());
Connection connection = pooledConnection.getConnection();
assertNotNull(connection);
assertFalse(connection.isClosed());
assertTrue(pooledConnection.inUse());
TestConnectionListener listner = new TestConnectionListener();
pooledConnection.addConnectionEventListener(listner);
assertEquals(0, listner.getConnectionClosedCount());
assertEquals(0, listner.getConnectionErrorCount());
connection.close();
assertFalse(pooledConnection.inUse());
assertEquals(1, listner.getConnectionClosedCount());
assertEquals(0, listner.getConnectionErrorCount());
assertTrue(pooledConnection.isListenerPooled(listner));
}
@Test
public void testConnectionHandleClosedByPooledConnection() throws SQLException {
BigQueryPooledConnection pooledConnection = new BigQueryPooledConnection(bigQueryConnection);
assertEquals(LISTENER_POOL_SIZE, pooledConnection.getListenerPoolSize());
assertFalse(pooledConnection.inUse());
Connection connection = pooledConnection.getConnection();
assertNotNull(connection);
assertFalse(connection.isClosed());
assertTrue(pooledConnection.inUse());
TestConnectionListener listner = new TestConnectionListener();
pooledConnection.addConnectionEventListener(listner);
assertEquals(0, listner.getConnectionClosedCount());
assertEquals(0, listner.getConnectionErrorCount());
pooledConnection.close();
assertFalse(pooledConnection.inUse());
assertEquals(1, listner.getConnectionClosedCount());
assertEquals(0, listner.getConnectionErrorCount());
assertTrue(pooledConnection.isListenerPooled(listner));
}
@Test
public void testFireConnectionError() throws SQLException {
BigQueryPooledConnection pooledConnection = new BigQueryPooledConnection(bigQueryConnection);
assertEquals(LISTENER_POOL_SIZE, pooledConnection.getListenerPoolSize());
assertFalse(pooledConnection.inUse());
Connection connection = pooledConnection.getConnection();
assertNotNull(connection);
assertFalse(connection.isClosed());
assertTrue(pooledConnection.inUse());
TestConnectionListener listner = new TestConnectionListener();
pooledConnection.addConnectionEventListener(listner);
assertEquals(0, listner.getConnectionClosedCount());
assertEquals(0, listner.getConnectionErrorCount());
pooledConnection.fireConnectionError(new SQLException("test"));
assertFalse(pooledConnection.inUse());
assertEquals(0, listner.getConnectionClosedCount());
assertEquals(1, listner.getConnectionErrorCount());
assertFalse(pooledConnection.isListenerPooled(listner));
}
}