From 9c3ff77d8f76b23bb58a58bcc993d55c08d34130 Mon Sep 17 00:00:00 2001 From: eugenp Date: Tue, 10 Jun 2014 17:08:29 +0300 Subject: [PATCH] minor java testing work --- .../JavaCollectionCleanupUnitTest.java | 53 +++++++++++++++++ spring-security-rest/pom.xml | 58 +++++++++++++------ 2 files changed, 94 insertions(+), 17 deletions(-) create mode 100644 core-java/src/test/java/org/baeldung/java/collections/JavaCollectionCleanupUnitTest.java diff --git a/core-java/src/test/java/org/baeldung/java/collections/JavaCollectionCleanupUnitTest.java b/core-java/src/test/java/org/baeldung/java/collections/JavaCollectionCleanupUnitTest.java new file mode 100644 index 0000000000..70befc6c19 --- /dev/null +++ b/core-java/src/test/java/org/baeldung/java/collections/JavaCollectionCleanupUnitTest.java @@ -0,0 +1,53 @@ +package org.baeldung.java.collections; + +import static org.hamcrest.Matchers.hasSize; +import static org.junit.Assert.assertThat; + +import java.util.List; + +import org.apache.commons.collections4.CollectionUtils; +import org.apache.commons.collections4.PredicateUtils; +import org.junit.Test; + +import com.google.common.base.Predicates; +import com.google.common.collect.Iterables; +import com.google.common.collect.Lists; + +public class JavaCollectionCleanupUnitTest { + + // removing nulls + + @Test + public final void givenListContainsNulls_whenRemovingNullsWithPlainJava_thenCorrect() { + final List list = Lists.newArrayList(null, 1, null); + while (list.remove(null)) + ; + + assertThat(list, hasSize(1)); + } + + @Test + public final void givenListContainsNulls_whenRemovingNullsWithGuavaV1_thenCorrect() { + final List listWithNulls = Lists.newArrayList(null, 1, null); + Iterables.removeIf(listWithNulls, Predicates.isNull()); + + assertThat(listWithNulls, hasSize(1)); + } + + @Test + public final void givenListContainsNulls_whenRemovingNullsWithGuavaV2_thenCorrect() { + final List listWithNulls = Lists.newArrayList(null, 1, null, 2, 3); + final List listWithoutNulls = Lists.newArrayList(Iterables.filter(listWithNulls, Predicates.notNull())); + + assertThat(listWithoutNulls, hasSize(3)); + } + + @Test + public final void givenListContainsNulls_whenRemovingNullsWithCommonsCollections_thenCorrect() { + final List list = Lists.newArrayList(null, 1, 2, null, 3, null); + CollectionUtils.filter(list, PredicateUtils.notNullPredicate()); + + assertThat(list, hasSize(3)); + } + +} diff --git a/spring-security-rest/pom.xml b/spring-security-rest/pom.xml index 5e1048071b..27e629e363 100644 --- a/spring-security-rest/pom.xml +++ b/spring-security-rest/pom.xml @@ -30,10 +30,10 @@ spring-core ${org.springframework.version} - - commons-logging - commons-logging - + + commons-logging + commons-logging + @@ -93,7 +93,7 @@ 1.2 runtime - + @@ -101,7 +101,7 @@ jackson-databind 2.2.2 - + @@ -114,7 +114,31 @@ commons-lang3 3.1 + + + org.slf4j + slf4j-api + ${org.slf4j.version} + + + ch.qos.logback + logback-classic + ${logback.version} + + + + org.slf4j + jcl-over-slf4j + ${org.slf4j.version} + + + + org.slf4j + log4j-over-slf4j + ${org.slf4j.version} + + @@ -157,16 +181,16 @@ - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - 1.7 - 1.7 - - - + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + 1.7 + 1.7 + + + org.apache.maven.plugins maven-war-plugin @@ -247,7 +271,7 @@ 2.4 2.17 1.4.8 - + \ No newline at end of file