Added log4j to maven build at test time to avoid spurious INFO logging

Updated log4j.xml files to quell debug/info output
Moved src/test/resources/**/* -> src/main/resources/**/* for the time being to fix the jdbc build
Eliminated several System.out.println calls in tests
This commit is contained in:
Chris Beams
2010-05-14 15:34:17 +00:00
parent 761b0ff9f2
commit 3bcb5a726a
26 changed files with 25 additions and 27 deletions

View File

@@ -4,5 +4,5 @@ log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%c{1}: %m%n
log4j.category.org.springframework.integration=INFO
log4j.category.org.springframework.integration.file=DEBUG
log4j.category.org.springframework.integration=WARN
log4j.category.org.springframework.integration.file=WARN

View File

@@ -31,7 +31,6 @@ import org.springframework.integration.ip.tcp.CustomNioSocketWriter;
import org.springframework.integration.ip.tcp.MessageFormats;
import org.springframework.integration.ip.tcp.SimpleTcpNetInboundGateway;
import org.springframework.integration.ip.tcp.SimpleTcpNetOutboundGateway;
import org.springframework.integration.ip.tcp.SimpleTcpNetOutboundGatewayTests;
import org.springframework.integration.ip.tcp.TcpNetReceivingChannelAdapter;
import org.springframework.integration.ip.tcp.TcpNetSendingMessageHandler;
import org.springframework.integration.ip.tcp.TcpNioReceivingChannelAdapter;
@@ -47,7 +46,6 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* @author Gary Russell
*
*/
@ContextConfiguration
@RunWith(SpringJUnit4ClassRunner.class)
@@ -288,10 +286,4 @@ public class ParserUnitTests {
assertEquals(226, delegateDfa.getPropertyValue("soTimeout"));
}
@Test
public void test() {
String[] beanDefinitionNames = ctx.getBeanDefinitionNames();
for (String x : beanDefinitionNames)
System.out.println(x);
}
}

View File

@@ -1,8 +1,8 @@
log4j.rootCategory=DEBUG, stdout
log4j.rootCategory=WARN, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%c{1}: %m%n
log4j.category.org.springframework.integration=DEBUG
log4j.category.org.springframework.integration.ip=DEBUG
log4j.category.org.springframework.integration=WARN
log4j.category.org.springframework.integration.ip=WARN

View File

@@ -5,7 +5,7 @@ log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %t %c{2}:%L - %m%n
log4j.category.org.springframework=DEBUG
log4j.category.org.springframework.integration=INFO
log4j.category.org.springframework.integration.jdbc=DEBUG
log4j.category.org.springframework.jdbc=TRACE
log4j.category.org.springframework=WARN
log4j.category.org.springframework.integration=WARN
log4j.category.org.springframework.integration.jdbc=WARN
log4j.category.org.springframework.jdbc=WARN

View File

@@ -4,5 +4,5 @@ log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%c{1}: %m%n
log4j.category.org.springframework.integration.security=DEBUG
log4j.category.org.springframework.integration=INFO
log4j.category.org.springframework.integration.security=WARN
log4j.category.org.springframework.integration=WARN

View File

@@ -4,4 +4,4 @@ log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%c{1}: %m%n
log4j.category.org.springframework.integration=INFO
log4j.category.org.springframework.integration=WARN

View File

@@ -297,7 +297,6 @@ public class MethodInvokingMessageProcessorAnnotationTests {
private static class TestService {
public Map<?,?> mapOnly(Map<?,?> map) {
System.out.println(map);
return map;
}

View File

@@ -4,4 +4,4 @@ log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%c{1}: %m%n
log4j.category.org.springframework.integration=INFO
log4j.category.org.springframework.integration=WARN

View File

@@ -10,16 +10,16 @@
the build process. </description>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<org.eclipse.jdt.core.version>3.4.2.v_883_R34x</org.eclipse.jdt.core.version>
<junit.version>4.7</junit.version>
<spring.version>3.0.2.RELEASE</spring.version>
<maven.test.failure.ignore>true</maven.test.failure.ignore>
</properties>
<profiles>
<profile>
<id>strict</id>
<id>non-strict</id>
<properties>
<maven.test.failure.ignore>false</maven.test.failure.ignore>
<maven.test.failure.ignore>true</maven.test.failure.ignore>
</properties>
</profile>
<profile>
@@ -129,7 +129,6 @@
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
@@ -138,7 +137,6 @@
<target>1.5</target>
</configuration>
</plugin>
<!--
<plugin> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
@@ -260,4 +258,13 @@
</snapshots>
</pluginRepository>
</pluginRepositories>
<dependencies>
<!-- including log4j to quell respect src/test log4j.xml settings -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>