From fb9370f82d39ffe22579b6497bb6787c304cd692 Mon Sep 17 00:00:00 2001 From: tristaZero Date: Fri, 10 May 2019 11:21:34 +0800 Subject: [PATCH] modify test cases --- .../EncryptWhereColumnPlaceholderTest.java | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/sharding-core/sharding-core-rewrite/src/test/java/org/apache/shardingsphere/core/rewrite/placeholder/EncryptWhereColumnPlaceholderTest.java b/sharding-core/sharding-core-rewrite/src/test/java/org/apache/shardingsphere/core/rewrite/placeholder/EncryptWhereColumnPlaceholderTest.java index 8521213331..a474c7a644 100644 --- a/sharding-core/sharding-core-rewrite/src/test/java/org/apache/shardingsphere/core/rewrite/placeholder/EncryptWhereColumnPlaceholderTest.java +++ b/sharding-core/sharding-core-rewrite/src/test/java/org/apache/shardingsphere/core/rewrite/placeholder/EncryptWhereColumnPlaceholderTest.java @@ -41,9 +41,8 @@ public class EncryptWhereColumnPlaceholderTest { public void assertToStringWithoutPlaceholderWithEqual() { Map> indexValues = new LinkedHashMap<>(); indexValues.put(0, "a"); - encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("table_x", "column_x", indexValues, Collections.emptyList(), ShardingOperator.EQUAL); + encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("column_x", indexValues, Collections.emptyList(), ShardingOperator.EQUAL); assertThat(encryptWhereColumnPlaceholder.toString(), is("column_x = 'a'")); - assertThat(encryptWhereColumnPlaceholder.getLogicTableName(), is("table_x")); assertThat(encryptWhereColumnPlaceholder.getColumnName(), is("column_x")); assertThat(encryptWhereColumnPlaceholder.getOperator(), is(ShardingOperator.EQUAL)); assertThat(encryptWhereColumnPlaceholder.getIndexValues(), is(indexValues)); @@ -52,7 +51,7 @@ public class EncryptWhereColumnPlaceholderTest { @Test public void assertToStringWithPlaceholderWithEqual() { - encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("table_x", "column_x", Collections.>emptyMap(), Collections.singletonList(0), ShardingOperator.EQUAL); + encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("column_x", Collections.>emptyMap(), Collections.singletonList(0), ShardingOperator.EQUAL); assertThat(encryptWhereColumnPlaceholder.toString(), is("column_x = ?")); } @@ -61,7 +60,7 @@ public class EncryptWhereColumnPlaceholderTest { Map> indexValues = new LinkedHashMap<>(); indexValues.put(0, "a"); indexValues.put(1, "b"); - encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("table_x", "column_x", indexValues, Collections.emptyList(), ShardingOperator.BETWEEN); + encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("column_x", indexValues, Collections.emptyList(), ShardingOperator.BETWEEN); assertThat(encryptWhereColumnPlaceholder.toString(), is("column_x BETWEEN 'a' AND 'b'")); } @@ -69,7 +68,7 @@ public class EncryptWhereColumnPlaceholderTest { public void assertToStringWithFirstPlaceholderWithBetween() { Map> indexValues = new LinkedHashMap<>(); indexValues.put(0, "a"); - encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("table_x", "column_x", indexValues, Collections.singletonList(1), ShardingOperator.BETWEEN); + encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("column_x", indexValues, Collections.singletonList(1), ShardingOperator.BETWEEN); assertThat(encryptWhereColumnPlaceholder.toString(), is("column_x BETWEEN 'a' AND ?")); } @@ -77,13 +76,13 @@ public class EncryptWhereColumnPlaceholderTest { public void assertToStringWithSecondPlaceholderWithBetween() { Map> indexValues = new LinkedHashMap<>(); indexValues.put(0, "a"); - encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("table_x", "column_x", indexValues, Collections.singletonList(0), ShardingOperator.BETWEEN); + encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("column_x", indexValues, Collections.singletonList(0), ShardingOperator.BETWEEN); assertThat(encryptWhereColumnPlaceholder.toString(), is("column_x BETWEEN ? AND 'a'")); } @Test public void assertToStringWithTwoPlaceholderWithBetween() { - encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("table_x", "column_x", Collections.>emptyMap(), Lists.newArrayList(0, 1), ShardingOperator.BETWEEN); + encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("column_x", Collections.>emptyMap(), Lists.newArrayList(0, 1), ShardingOperator.BETWEEN); assertThat(encryptWhereColumnPlaceholder.toString(), is("column_x BETWEEN ? AND ?")); } @@ -92,13 +91,13 @@ public class EncryptWhereColumnPlaceholderTest { Map> indexValues = new LinkedHashMap<>(); indexValues.put(0, "a"); indexValues.put(1, "b"); - encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("table_x", "column_x", indexValues, Collections.emptyList(), ShardingOperator.IN); + encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("column_x", indexValues, Collections.emptyList(), ShardingOperator.IN); assertThat(encryptWhereColumnPlaceholder.toString(), is("column_x IN ('a', 'b')")); } @Test public void assertToStringWithPlaceholderWithIn() { - encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("table_x", "column_x", Collections.>emptyMap(), Collections.singletonList(0), ShardingOperator.IN); + encryptWhereColumnPlaceholder = new EncryptWhereColumnPlaceholder("column_x", Collections.>emptyMap(), Collections.singletonList(0), ShardingOperator.IN); assertThat(encryptWhereColumnPlaceholder.toString(), is("column_x IN (?)")); } } -- GitLab