NodeItemTest: add more tests for update {get,find}{Data,Parent} methods
This commit is contained in:
parent
543c91f611
commit
0c13243ae6
1 changed files with 73 additions and 2 deletions
|
@ -35,8 +35,79 @@ public class NodeItemTest {
|
||||||
node = Nodes.unnamedRoot(data);
|
node = Nodes.unnamedRoot(data);
|
||||||
//then
|
//then
|
||||||
assertThat(node.getData()).as("can get the data from a node")
|
assertThat(node.getData()).as("can get the data from a node")
|
||||||
.
|
.contains(data);
|
||||||
contains(data);
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void getDataWhenEmptyThrowsException() throws Exception {
|
||||||
|
//given
|
||||||
|
node = Nodes.unnamedRoot(null);
|
||||||
|
assertThat(node.isEmpty()).isTrue();
|
||||||
|
exception.expect(EmptyNodeException.class);
|
||||||
|
//when
|
||||||
|
node.getData();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void findDataWhenFullReturnsData() {
|
||||||
|
//given
|
||||||
|
val data = "data";
|
||||||
|
node = Nodes.unnamedRoot(data);
|
||||||
|
//when
|
||||||
|
val result = node.findData();
|
||||||
|
//then
|
||||||
|
assertThat(result).contains(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void findDataWhenEmptyReturnsEmptyOptional() {
|
||||||
|
//given
|
||||||
|
node = Nodes.unnamedRoot(null);
|
||||||
|
//when
|
||||||
|
val result = node.findData();
|
||||||
|
//then
|
||||||
|
assertThat(result).isEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void getParentWhenRootThrowsException() {
|
||||||
|
//given
|
||||||
|
node = Nodes.unnamedRoot(null);
|
||||||
|
exception.expect(OrphanedNodeException.class);
|
||||||
|
//when
|
||||||
|
node.getParent();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void getParentWhenChildReturnsRoot() {
|
||||||
|
//given
|
||||||
|
val root = Nodes.unnamedRoot("root");
|
||||||
|
node = Nodes.unnamedChild("child", root);
|
||||||
|
//when
|
||||||
|
val result = node.getParent();
|
||||||
|
//then
|
||||||
|
assertThat(result).isSameAs(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void findParentWhenRootReturnsEmptyOptional() {
|
||||||
|
//given
|
||||||
|
node = Nodes.unnamedRoot(null);
|
||||||
|
//when
|
||||||
|
val result = node.findParent();
|
||||||
|
//then
|
||||||
|
assertThat(result).isEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void findParentWhenChildReturnsRoot() {
|
||||||
|
//given
|
||||||
|
val root = Nodes.unnamedRoot("root");
|
||||||
|
node = Nodes.unnamedChild("child", root);
|
||||||
|
//when
|
||||||
|
val result = node.findParent();
|
||||||
|
//then
|
||||||
|
assertThat(result).contains(root);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
Loading…
Reference in a new issue