forked from assertj/assertj-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added isEmpty assertion (requested at assertj#12)
- Loading branch information
1 parent
9f04f6c
commit 3c2a664
Showing
4 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_IsEmpty_Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/** | ||
* 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. | ||
* | ||
* Copyright 2012-2016 the original author or authors. | ||
*/ | ||
package org.assertj.db.api.assertions; | ||
|
||
import org.assertj.core.api.Assertions; | ||
import org.assertj.db.api.TableAssert; | ||
import org.assertj.db.api.TableColumnAssert; | ||
import org.assertj.db.common.AbstractTest; | ||
import org.assertj.db.type.Request; | ||
import org.assertj.db.type.Table; | ||
import org.junit.Test; | ||
|
||
import static org.assertj.db.api.Assertions.assertThat; | ||
import static org.junit.Assert.fail; | ||
|
||
/** | ||
* Tests on {@link org.assertj.db.api.assertions.AssertOnNumberOfRows} class : | ||
* {@link AssertOnNumberOfRows#isEmpty()} method. | ||
*/ | ||
public class AssertOnNumberOfRows_IsEmpty_Test extends AbstractTest { | ||
|
||
/** | ||
* This method tests the {@code isEmpty} assertion method. | ||
*/ | ||
@Test | ||
public void test_is_empty() { | ||
update("delete from test"); | ||
Table table = new Table(source, "test"); | ||
TableAssert tableAssert = assertThat(table); | ||
TableAssert tableAssert2 = tableAssert.isEmpty(); | ||
Assertions.assertThat(tableAssert).isSameAs(tableAssert2); | ||
TableColumnAssert tableColumnAssert = assertThat(table).column(); | ||
TableColumnAssert tableColumnAssert2 = tableColumnAssert.isEmpty(); | ||
Assertions.assertThat(tableColumnAssert).isSameAs(tableColumnAssert2); | ||
} | ||
|
||
/** | ||
* This method should fail because table is not empty. | ||
*/ | ||
@Test | ||
public void should_fail_because_table_is_not_empty() { | ||
Request request = new Request(source, "select * from actor"); | ||
try { | ||
assertThat(request).isEmpty(); | ||
fail("An exception must be raised"); | ||
} catch (AssertionError e) { | ||
Assertions.assertThat(e.getMessage()).isEqualTo(String.format("['select * from actor' request] %n" | ||
+ "Expecting size (number of rows) to be equal to :%n" | ||
+ " <0>%n" | ||
+ "but was:%n" | ||
+ " <3>")); | ||
} | ||
try { | ||
assertThat(request).column().isEmpty(); | ||
fail("An exception must be raised"); | ||
} catch (AssertionError e) { | ||
Assertions.assertThat(e.getMessage()).isEqualTo(String.format("[Column at index 0 (column name : ID) of 'select * from actor' request] %n" | ||
+ "Expecting size (number of rows) to be equal to :%n" | ||
+ " <0>%n" | ||
+ "but was:%n" | ||
+ " <3>")); | ||
} | ||
} | ||
} |