Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/test/java/net/snowflake/client/jdbc/ConnectionIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ public void testLoginTimeoutViaDataSource() throws SQLException {
* password but correct url Expectation is receiving incorrect username or password response from
* server
*/
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
@Test
public void testProdConnectivity() throws SQLException {
String[] deploymentUrls = {
Expand Down Expand Up @@ -566,6 +567,7 @@ public void testDifferentKeyLength() throws Exception {
}

/** Test production connectivity with insecure mode enabled. */
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
@ParameterizedTest
@ValueSource(booleans = {true, false})
public void testInsecureMode(boolean insecureModeInProperties) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1653,6 +1653,7 @@ public void shouldFailOnSslExceptionWithLinkToTroubleShootingGuide() throws Inte
* Test production connectivity with disableOCSPChecksMode enabled. This test applies to driver
* versions after 3.21.0
*/
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
@Test
public void testDisableOCSPChecksMode() throws SQLException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import net.snowflake.client.core.SFTrustManager;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;

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

Expand All @@ -50,6 +52,7 @@ public void testDisableOCSPChecksModeAndInsecureModeSet() throws SQLException {
* Test production connectivity with only disableOCSPChecksMode enabled. This test applies to
* driver versions after 3.21.0
*/
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
@Test
public void testDisableOCSPChecksModeSet() throws SQLException {
boolean disableOCSPChecks = true;
Expand All @@ -62,6 +65,7 @@ public void testDisableOCSPChecksModeSet() throws SQLException {
* Test production connectivity with only insecureMode enabled. This test applies to driver
* versions after 3.21.0
*/
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
@Test
public void testInsecureModeSet() throws SQLException {
boolean insecureMode = true;
Expand All @@ -74,6 +78,7 @@ public void testInsecureModeSet() throws SQLException {
* Test production connectivity with disableOCSPChecksMode enabled AND insecureMode disabled. This
* test applies to driver versions after 3.21.0
*/
@Disabled("Disable due to changed error response in backend. Follow up: SNOW-2021007")
@Test
public void testDisableOCSPChecksModeAndInsecureModeMismatched() throws SQLException {
boolean disableOCSPChecks = true;
Expand Down