commit
74a2d57cab
12 changed files with 327 additions and 94 deletions
|
@ -1,6 +1,11 @@
|
|||
CHANGELOG
|
||||
=========
|
||||
|
||||
0.6.0
|
||||
------
|
||||
|
||||
* Add streamAll() support
|
||||
|
||||
0.5.0
|
||||
------
|
||||
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -2,7 +2,7 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>node</artifactId>
|
||||
<version>0.6.0-SNAPSHOT</version>
|
||||
<version>0.7.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>Node</name>
|
||||
|
@ -15,7 +15,7 @@
|
|||
</parent>
|
||||
|
||||
<properties>
|
||||
<lombok.version>1.16.10</lombok.version>
|
||||
<lombok.version>1.16.12</lombok.version>
|
||||
<assertj.version>3.6.2</assertj.version>
|
||||
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
|
||||
<trajano-commons-testing.version>2.1.0</trajano-commons-testing.version>
|
||||
|
|
42
src/main/java/net/kemitix/node/EmptyNodeException.java
Normal file
42
src/main/java/net/kemitix/node/EmptyNodeException.java
Normal file
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Paul Campbell
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
*/
|
||||
|
||||
package net.kemitix.node;
|
||||
|
||||
/**
|
||||
* Raised when an attempt is made to get the data from an empty node.
|
||||
*
|
||||
* @author Paul Campbell (pcampbell@kemitix.net)
|
||||
*/
|
||||
public class EmptyNodeException extends NodeException {
|
||||
|
||||
/**
|
||||
* Constructor with message.
|
||||
*
|
||||
* @param message the message
|
||||
*/
|
||||
public EmptyNodeException(final String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
|
@ -59,7 +59,14 @@ public interface Node<T> {
|
|||
*
|
||||
* @return an Optional containing the node's data, or empty if the node has none
|
||||
*/
|
||||
Optional<T> getData();
|
||||
Optional<T> findData();
|
||||
|
||||
/**
|
||||
* Fetch the data held within the node.
|
||||
*
|
||||
* @return the node's data, or throws an {@link EmptyNodeException}
|
||||
*/
|
||||
T getData();
|
||||
|
||||
/**
|
||||
* Set the data held within the node.
|
||||
|
@ -80,7 +87,14 @@ public interface Node<T> {
|
|||
*
|
||||
* @return an Optional contain the parent node, or empty if a root node
|
||||
*/
|
||||
Optional<Node<T>> getParent();
|
||||
Optional<Node<T>> findParent();
|
||||
|
||||
/**
|
||||
* Fetch the parent node.
|
||||
*
|
||||
* @return the parent node, or throws an {@link OrphanedNodeException}
|
||||
*/
|
||||
Node<T> getParent();
|
||||
|
||||
/**
|
||||
* Make the current node a direct child of the parent.
|
||||
|
|
|
@ -42,7 +42,8 @@ import java.util.stream.Stream;
|
|||
*
|
||||
* @author Paul Campbell (pcampbell@kemitix.net)
|
||||
*/
|
||||
@ToString(exclude = "children")
|
||||
@ToString(exclude = {"children", "data", "parent"})
|
||||
@SuppressWarnings("methodcount")
|
||||
class NodeItem<T> implements Node<T> {
|
||||
|
||||
private final Set<Node<T>> children = new HashSet<>();
|
||||
|
@ -61,9 +62,7 @@ class NodeItem<T> implements Node<T> {
|
|||
* @param parent the parent of the node, or null for a root node
|
||||
* @param children the children of the node - must not be null
|
||||
*/
|
||||
NodeItem(
|
||||
final T data, final String name, final Node<T> parent, @NonNull final Set<Node<T>> children
|
||||
) {
|
||||
NodeItem(final T data, final String name, final Node<T> parent, @NonNull final Set<Node<T>> children) {
|
||||
this.data = data;
|
||||
this.name = name;
|
||||
if (parent != null) {
|
||||
|
@ -92,10 +91,18 @@ class NodeItem<T> implements Node<T> {
|
|||
}
|
||||
|
||||
@Override
|
||||
public Optional<T> getData() {
|
||||
public Optional<T> findData() {
|
||||
return Optional.ofNullable(data);
|
||||
}
|
||||
|
||||
@Override
|
||||
public T getData() {
|
||||
if (isEmpty()) {
|
||||
throw new EmptyNodeException(getName());
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setData(final T data) {
|
||||
this.data = data;
|
||||
|
@ -107,10 +114,18 @@ class NodeItem<T> implements Node<T> {
|
|||
}
|
||||
|
||||
@Override
|
||||
public Optional<Node<T>> getParent() {
|
||||
public Optional<Node<T>> findParent() {
|
||||
return Optional.ofNullable(parent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Node<T> getParent() {
|
||||
if (parent == null) {
|
||||
throw new OrphanedNodeException(getName());
|
||||
}
|
||||
return parent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Make the current node a direct child of the parent.
|
||||
*
|
||||
|
@ -155,9 +170,9 @@ class NodeItem<T> implements Node<T> {
|
|||
}
|
||||
children.add(child);
|
||||
// update the child's parent if they don't have one or it is not this
|
||||
val childParent = child.getParent();
|
||||
if (!childParent.isPresent() || !childParent.get()
|
||||
.equals(this)) {
|
||||
if (!child.findParent()
|
||||
.filter(this::equals)
|
||||
.isPresent()) {
|
||||
child.setParent(this);
|
||||
}
|
||||
}
|
||||
|
@ -214,8 +229,8 @@ class NodeItem<T> implements Node<T> {
|
|||
@Override
|
||||
public Optional<Node<T>> findChild(@NonNull final T child) {
|
||||
return children.stream()
|
||||
.filter(node -> child.equals(node.getData()
|
||||
.orElseGet(() -> null)))
|
||||
.filter(node -> child.equals(node.findData()
|
||||
.orElse(null)))
|
||||
.findFirst();
|
||||
}
|
||||
|
||||
|
@ -283,7 +298,7 @@ class NodeItem<T> implements Node<T> {
|
|||
val existing = childByName.get();
|
||||
if (existing.isEmpty()) {
|
||||
// place any data in the new node into the existing empty node
|
||||
nodeItem.getData()
|
||||
nodeItem.findData()
|
||||
.ifPresent(existing::setData);
|
||||
} else {
|
||||
throw new NodeException("A non-empty node named '" + nodeItem.getName() + "' already exists here");
|
||||
|
|
|
@ -101,12 +101,12 @@ public final class Nodes {
|
|||
* @return the immutable copy of the tree
|
||||
*/
|
||||
public static <T> Node<T> asImmutable(final Node<T> root) {
|
||||
if (root.getParent()
|
||||
if (root.findParent()
|
||||
.isPresent()) {
|
||||
throw new IllegalArgumentException("source must be the root node");
|
||||
}
|
||||
final Set<Node<T>> children = getImmutableChildren(root);
|
||||
return ImmutableNodeItem.newRoot(root.getData()
|
||||
return ImmutableNodeItem.newRoot(root.findData()
|
||||
.orElse(null), root.getName(), children);
|
||||
}
|
||||
|
||||
|
@ -120,11 +120,10 @@ public final class Nodes {
|
|||
private static <T> Node<T> asImmutableChild(
|
||||
final Node<T> source
|
||||
) {
|
||||
return ImmutableNodeItem.newChild(source.getData()
|
||||
.orElse(null), source.getName(), source.getParent()
|
||||
return ImmutableNodeItem.newChild(source.findData()
|
||||
.orElse(null), source.getName(), source.findParent()
|
||||
.orElse(null),
|
||||
getImmutableChildren(source)
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
42
src/main/java/net/kemitix/node/OrphanedNodeException.java
Normal file
42
src/main/java/net/kemitix/node/OrphanedNodeException.java
Normal file
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Paul Campbell
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
*/
|
||||
|
||||
package net.kemitix.node;
|
||||
|
||||
/**
|
||||
* Raised when an attempt is made to access the parent of a root node.
|
||||
*
|
||||
* @author Paul Campbell (pcampbell@kemitix.net)
|
||||
*/
|
||||
public class OrphanedNodeException extends NodeException {
|
||||
|
||||
/**
|
||||
* Constructor with message.
|
||||
*
|
||||
* @param message the message
|
||||
*/
|
||||
public OrphanedNodeException(final String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
29
src/test/java/net/kemitix/node/EmptyNodeExceptionTest.java
Normal file
29
src/test/java/net/kemitix/node/EmptyNodeExceptionTest.java
Normal file
|
@ -0,0 +1,29 @@
|
|||
package net.kemitix.node;
|
||||
|
||||
import lombok.val;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.hamcrest.CoreMatchers.is;
|
||||
import static org.junit.Assert.assertThat;
|
||||
|
||||
/**
|
||||
* Tests for {@link EmptyNodeException}.
|
||||
*
|
||||
* @author pcampbell
|
||||
*/
|
||||
public class EmptyNodeExceptionTest {
|
||||
|
||||
/**
|
||||
* Test that message provided to constructor is returned.
|
||||
*/
|
||||
@Test
|
||||
public void shouldReturnConstructorMessage() {
|
||||
//given
|
||||
val message = "this is the message";
|
||||
//when
|
||||
val nodeException = new EmptyNodeException(message);
|
||||
//then
|
||||
assertThat(nodeException.getMessage(), is(message));
|
||||
}
|
||||
|
||||
}
|
|
@ -74,7 +74,7 @@ public class ImmutableNodeItemTest {
|
|||
//given
|
||||
immutableNode = Nodes.asImmutable(Nodes.unnamedRoot("data"));
|
||||
//then
|
||||
assertThat(immutableNode.getParent()).as("immutableNode created without a parent has no parent")
|
||||
assertThat(immutableNode.findParent()).as("immutableNode created without a parent has no parent")
|
||||
.isEmpty();
|
||||
}
|
||||
|
||||
|
@ -101,11 +101,11 @@ public class ImmutableNodeItemTest {
|
|||
//then
|
||||
// get the immutable node's child's parent
|
||||
val immutableChild = immutableNode.getChildByName("child");
|
||||
final Optional<Node<String>> optionalParent = immutableChild.getParent();
|
||||
final Optional<Node<String>> optionalParent = immutableChild.findParent();
|
||||
if (optionalParent.isPresent()) {
|
||||
val p = optionalParent.get();
|
||||
assertThat(p).hasFieldOrPropertyWithValue("name", "root")
|
||||
.hasFieldOrPropertyWithValue("data", Optional.of("parent"));
|
||||
.hasFieldOrPropertyWithValue("data", "parent");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -35,8 +35,79 @@ public class NodeItemTest {
|
|||
node = Nodes.unnamedRoot(data);
|
||||
//then
|
||||
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
|
||||
|
@ -72,7 +143,7 @@ public class NodeItemTest {
|
|||
//given
|
||||
node = Nodes.unnamedRoot("data");
|
||||
//then
|
||||
assertThat(node.getParent()).as("node created without a parent has no parent")
|
||||
assertThat(node.findParent()).as("node created without a parent has no parent")
|
||||
.isEmpty();
|
||||
}
|
||||
|
||||
|
@ -86,7 +157,7 @@ public class NodeItemTest {
|
|||
//when
|
||||
node = Nodes.unnamedChild("subject", parent);
|
||||
//then
|
||||
assertThat(node.getParent()).as("node created with a parent can return the parent")
|
||||
assertThat(node.findParent()).as("node created with a parent can return the parent")
|
||||
.contains(parent);
|
||||
}
|
||||
|
||||
|
@ -144,7 +215,7 @@ public class NodeItemTest {
|
|||
//when
|
||||
node.setParent(parent);
|
||||
//then
|
||||
assertThat(node.getParent()).as("when a node is assigned a new parent that parent can be " + "returned")
|
||||
assertThat(node.findParent()).as("when a node is assigned a new parent that parent can be " + "returned")
|
||||
.contains(parent);
|
||||
}
|
||||
|
||||
|
@ -188,7 +259,7 @@ public class NodeItemTest {
|
|||
//when
|
||||
child.setParent(newParent);
|
||||
//then
|
||||
assertThat(child.getParent()).as("when a node is assigned a new parent, the old parent is " + "replaced")
|
||||
assertThat(child.findParent()).as("when a node is assigned a new parent, the old parent is " + "replaced")
|
||||
.contains(newParent);
|
||||
assertThat(node.findChild("child")
|
||||
.isPresent()).as(
|
||||
|
@ -209,7 +280,7 @@ public class NodeItemTest {
|
|||
//when
|
||||
newParent.addChild(child);
|
||||
//then
|
||||
assertThat(child.getParent()).as("when a node with an existing parent is added as a child " +
|
||||
assertThat(child.findParent()).as("when a node with an existing parent is added as a child " +
|
||||
"to another node, then the old parent is replaced")
|
||||
.contains(newParent);
|
||||
assertThat(node.findChild("child")
|
||||
|
@ -316,7 +387,7 @@ public class NodeItemTest {
|
|||
//when
|
||||
node.addChild(child);
|
||||
//then
|
||||
assertThat(child.getParent()).as("when a node is added as a child, the child has the node as " + "its parent")
|
||||
assertThat(child.findParent()).as("when a node is added as a child, the child has the node as " + "its parent")
|
||||
.contains(node);
|
||||
}
|
||||
|
||||
|
@ -338,10 +409,9 @@ public class NodeItemTest {
|
|||
//then
|
||||
assertThat(result.isPresent()).as("when we walk the tree to a node it is found")
|
||||
.isTrue();
|
||||
if (result.isPresent()) {
|
||||
assertThat(result.get()).as("when we walk the tree to a node the correct node is found")
|
||||
.isSameAs(node);
|
||||
}
|
||||
result.ifPresent(
|
||||
stringNode -> assertThat(stringNode).as("when we walk the tree to a node the correct node is found")
|
||||
.isSameAs(node));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -408,31 +478,27 @@ public class NodeItemTest {
|
|||
val alphaOptional = node.findChild(alphaData);
|
||||
assertThat(alphaOptional.isPresent()).as("when creating a descendant line, the first element is found")
|
||||
.isTrue();
|
||||
if (alphaOptional.isPresent()) {
|
||||
val alpha = alphaOptional.get();
|
||||
assertThat(alpha.getParent()).as(
|
||||
"when creating a descendant line, the first element has " + "the current node as its parent")
|
||||
alphaOptional.ifPresent(alpha -> {
|
||||
assertThat(alpha.findParent()).as(
|
||||
"when creating a descendant line, the first element has the current node as its parent")
|
||||
.contains(node);
|
||||
val betaOptional = alpha.findChild(betaData);
|
||||
assertThat(betaOptional.isPresent()).as("when creating a descendant line, the second element is " + "found")
|
||||
assertThat(betaOptional.isPresent()).as("when creating a descendant line, the second element is found")
|
||||
.isTrue();
|
||||
if (betaOptional.isPresent()) {
|
||||
val beta = betaOptional.get();
|
||||
assertThat(beta.getParent()).as(
|
||||
"when creating a descendant line, the second element " + "has the first as its parent")
|
||||
betaOptional.ifPresent(beta -> {
|
||||
assertThat(beta.findParent()).as(
|
||||
"when creating a descendant line, the second element has the first as its parent")
|
||||
.contains(alpha);
|
||||
val gammaOptional = beta.findChild(gammaData);
|
||||
assertThat(gammaOptional.isPresent()).as(
|
||||
"when creating a descendant line, the third element " + "is found")
|
||||
assertThat(gammaOptional.isPresent()).as("when creating a descendant line, the third element is found")
|
||||
.isTrue();
|
||||
if (gammaOptional.isPresent()) {
|
||||
val gamma = gammaOptional.get();
|
||||
assertThat(gamma.getParent()).as(
|
||||
"when creating a descendant line, the third " + "element has the second as its parent")
|
||||
gammaOptional.ifPresent(gamma -> {
|
||||
assertThat(gamma.findParent()).as(
|
||||
"when creating a descendant line, the third element has the second as its parent")
|
||||
.contains(beta);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -478,10 +544,9 @@ public class NodeItemTest {
|
|||
//then
|
||||
assertThat(found.isPresent()).as("when retrieving a child by its data, it is found")
|
||||
.isTrue();
|
||||
if (found.isPresent()) {
|
||||
assertThat(found.get()).as("when retrieving a child by its data, it is the expected " + "node")
|
||||
.isSameAs(child);
|
||||
}
|
||||
found.ifPresent(
|
||||
stringNode -> assertThat(stringNode).as("when retrieving a child by its data, it is the expected node")
|
||||
.isSameAs(child));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -509,17 +574,14 @@ public class NodeItemTest {
|
|||
//when
|
||||
val child = node.createChild(childData);
|
||||
//then
|
||||
assertThat(child.getParent()).as(
|
||||
"when creating a child node, the child has the current node " + "as its parent")
|
||||
assertThat(child.findParent()).as("when creating a child node, the child has the current node as its parent")
|
||||
.contains(node);
|
||||
val foundChild = node.findChild(childData);
|
||||
assertThat(foundChild.isPresent()).as("when creating a child node, the child can be found by its " + "data")
|
||||
assertThat(foundChild.isPresent()).as("when creating a child node, the child can be found by its data")
|
||||
.isTrue();
|
||||
if (foundChild.isPresent()) {
|
||||
assertThat(foundChild.get()).as(
|
||||
"when creating a child node, the correct child can be " + "found by its data")
|
||||
.isSameAs(child);
|
||||
}
|
||||
foundChild.ifPresent(stringNode -> assertThat(stringNode).as(
|
||||
"when creating a child node, the correct child can be found by its data")
|
||||
.isSameAs(child));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -538,7 +600,7 @@ public class NodeItemTest {
|
|||
@Test
|
||||
public void canCreateRootNodeWithoutData() {
|
||||
node = Nodes.namedRoot(null, "empty");
|
||||
assertThat(node.getData()).isEmpty();
|
||||
assertThat(node.findData()).isEmpty();
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -590,19 +652,15 @@ public class NodeItemTest {
|
|||
//when
|
||||
node.insertInPath(four, "one", "two", "three");
|
||||
//then
|
||||
val three = four.getParent()
|
||||
.get();
|
||||
val three = four.getParent();
|
||||
assertThat(four.getParent()).as("add node to a tree")
|
||||
.isNotNull();
|
||||
assertThat(three.getName()).isEqualTo("three");
|
||||
val two = three.getParent()
|
||||
.get();
|
||||
val two = three.getParent();
|
||||
assertThat(two.getName()).isEqualTo("two");
|
||||
val one = two.getParent()
|
||||
.get();
|
||||
val one = two.getParent();
|
||||
assertThat(one.getName()).isEqualTo("one");
|
||||
assertThat(one.getParent()
|
||||
.get()).isSameAs(node);
|
||||
assertThat(one.getParent()).isSameAs(node);
|
||||
assertThat(node.getChildByName("one")
|
||||
.getChildByName("two")
|
||||
.getChildByName("three")
|
||||
|
@ -662,7 +720,7 @@ public class NodeItemTest {
|
|||
//when
|
||||
child.removeParent();
|
||||
//then
|
||||
assertThat(child.getParent()).isEmpty();
|
||||
assertThat(child.findParent()).isEmpty();
|
||||
assertThat(node.getChildren()).isEmpty();
|
||||
}
|
||||
|
||||
|
@ -703,7 +761,7 @@ public class NodeItemTest {
|
|||
node.addChild(child);
|
||||
child.addChild(target);
|
||||
val addMe = Nodes.namedRoot("I'm new", "target");
|
||||
assertThat(addMe.getParent()).isEmpty();
|
||||
assertThat(addMe.findParent()).isEmpty();
|
||||
assertThat(child.getChildByName("target")
|
||||
.isEmpty()).as("target starts empty")
|
||||
.isTrue();
|
||||
|
@ -761,7 +819,7 @@ public class NodeItemTest {
|
|||
node.removeChild(child);
|
||||
//then
|
||||
assertThat(node.getChildren()).isEmpty();
|
||||
assertThat(child.getParent()).isEmpty();
|
||||
assertThat(child.findParent()).isEmpty();
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -803,7 +861,7 @@ public class NodeItemTest {
|
|||
Node<String> child = node.createChild("child data", "child name");
|
||||
//then
|
||||
assertThat(child.getName()).isEqualTo("child name");
|
||||
assertThat(child.getParent()).contains(node);
|
||||
assertThat(child.findParent()).contains(node);
|
||||
assertThat(node.getChildren()).containsExactly(child);
|
||||
}
|
||||
|
||||
|
@ -836,7 +894,7 @@ public class NodeItemTest {
|
|||
//when
|
||||
val child = Nodes.unnamedChild("child data", node);
|
||||
//then
|
||||
assertThat(child.getParent()).contains(node);
|
||||
assertThat(child.findParent()).contains(node);
|
||||
assertThat(node.getChildren()).containsExactly(child);
|
||||
}
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ public class NodesTest {
|
|||
SoftAssertions softly = new SoftAssertions();
|
||||
softly.assertThat(node.getData()).contains("data");
|
||||
softly.assertThat(node.getName()).isEmpty();
|
||||
softly.assertThat(node.getParent()).contains(parent);
|
||||
softly.assertThat(node.findParent()).contains(parent);
|
||||
softly.assertAll();
|
||||
}
|
||||
|
||||
|
@ -55,7 +55,7 @@ public class NodesTest {
|
|||
SoftAssertions softly = new SoftAssertions();
|
||||
softly.assertThat(node.getData()).contains("data");
|
||||
softly.assertThat(node.getName()).isEqualTo("child");
|
||||
softly.assertThat(node.getParent()).contains(parent);
|
||||
softly.assertThat(node.findParent()).contains(parent);
|
||||
softly.assertAll();
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,29 @@
|
|||
package net.kemitix.node;
|
||||
|
||||
import lombok.val;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.hamcrest.CoreMatchers.is;
|
||||
import static org.junit.Assert.assertThat;
|
||||
|
||||
/**
|
||||
* Tests for {@link OrphanedNodeException}.
|
||||
*
|
||||
* @author pcampbell
|
||||
*/
|
||||
public class OrphanedNodeExceptionTest {
|
||||
|
||||
/**
|
||||
* Test that message provided to constructor is returned.
|
||||
*/
|
||||
@Test
|
||||
public void shouldReturnConstructorMessage() {
|
||||
//given
|
||||
val message = "this is the message";
|
||||
//when
|
||||
val nodeException = new OrphanedNodeException(message);
|
||||
//then
|
||||
assertThat(nodeException.getMessage(), is(message));
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue