Skip to content

Commit 3d9eec4

Browse files
Merge branch 'master' into SNOW-1902245-wif
2 parents 44663b8 + 0687a2e commit 3d9eec4

3 files changed

Lines changed: 8 additions & 0 deletions

File tree

src/test/java/net/snowflake/client/jdbc/ConnectionIT.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ public void testLoginTimeoutViaDataSource() throws SQLException {
139139
* password but correct url Expectation is receiving incorrect username or password response from
140140
* server
141141
*/
142+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
142143
@Test
143144
public void testProdConnectivity() throws SQLException {
144145
String[] deploymentUrls = {
@@ -566,6 +567,7 @@ public void testDifferentKeyLength() throws Exception {
566567
}
567568

568569
/** Test production connectivity with insecure mode enabled. */
570+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
569571
@ParameterizedTest
570572
@ValueSource(booleans = {true, false})
571573
public void testInsecureMode(boolean insecureModeInProperties) {

src/test/java/net/snowflake/client/jdbc/ConnectionLatestIT.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1653,6 +1653,7 @@ public void shouldFailOnSslExceptionWithLinkToTroubleShootingGuide() throws Inte
16531653
* Test production connectivity with disableOCSPChecksMode enabled. This test applies to driver
16541654
* versions after 3.21.0
16551655
*/
1656+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
16561657
@Test
16571658
public void testDisableOCSPChecksMode() throws SQLException {
16581659

src/test/java/net/snowflake/client/jdbc/ConnectionWithDisableOCSPModeLatestIT.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import net.snowflake.client.core.SFTrustManager;
1313
import org.junit.jupiter.api.AfterEach;
1414
import org.junit.jupiter.api.BeforeEach;
15+
import org.junit.jupiter.api.Disabled;
1516
import org.junit.jupiter.api.Tag;
1617
import org.junit.jupiter.api.Test;
1718

@@ -36,6 +37,7 @@ public void tearDown() {
3637
* Test connectivity with disableOCSPChecksMode and insecure mode enabled. This test applies to
3738
* driver versions after 3.21.0
3839
*/
40+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
3941
@Test
4042
public void testDisableOCSPChecksModeAndInsecureModeSet() throws SQLException {
4143

@@ -50,6 +52,7 @@ public void testDisableOCSPChecksModeAndInsecureModeSet() throws SQLException {
5052
* Test production connectivity with only disableOCSPChecksMode enabled. This test applies to
5153
* driver versions after 3.21.0
5254
*/
55+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
5356
@Test
5457
public void testDisableOCSPChecksModeSet() throws SQLException {
5558
boolean disableOCSPChecks = true;
@@ -62,6 +65,7 @@ public void testDisableOCSPChecksModeSet() throws SQLException {
6265
* Test production connectivity with only insecureMode enabled. This test applies to driver
6366
* versions after 3.21.0
6467
*/
68+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
6569
@Test
6670
public void testInsecureModeSet() throws SQLException {
6771
boolean insecureMode = true;
@@ -74,6 +78,7 @@ public void testInsecureModeSet() throws SQLException {
7478
* Test production connectivity with disableOCSPChecksMode enabled AND insecureMode disabled. This
7579
* test applies to driver versions after 3.21.0
7680
*/
81+
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
7782
@Test
7883
public void testDisableOCSPChecksModeAndInsecureModeMismatched() throws SQLException {
7984
boolean disableOCSPChecks = true;

0 commit comments

Comments
 (0)