View Javadoc

1   /*
2    *   Copyright (C) Christian Schulte, 2005-206
3    *   All rights reserved.
4    *
5    *   Redistribution and use in source and binary forms, with or without
6    *   modification, are permitted provided that the following conditions
7    *   are met:
8    *
9    *     o Redistributions of source code must retain the above copyright
10   *       notice, this list of conditions and the following disclaimer.
11   *
12   *     o Redistributions in binary form must reproduce the above copyright
13   *       notice, this list of conditions and the following disclaimer in
14   *       the documentation and/or other materials provided with the
15   *       distribution.
16   *
17   *   THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
18   *   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19   *   AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
20   *   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
21   *   INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22   *   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23   *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24   *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25   *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26   *   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27   *
28   *   $JOMC: GenerateResourcesTaskTest.java 3879 2011-10-24 00:59:27Z schulte2005 $
29   *
30   */
31  package org.jomc.ant.test;
32  
33  import org.apache.tools.ant.BuildException;
34  import org.apache.tools.ant.Project;
35  import org.jomc.ant.GenerateResourcesTask;
36  import org.jomc.ant.ResourceProcessingException;
37  import org.jomc.ant.test.support.AntExecutionResult;
38  import static org.jomc.ant.test.support.Assert.assertException;
39  import static org.jomc.ant.test.support.Assert.assertExceptionMessage;
40  import static org.jomc.ant.test.support.Assert.assertMessageLogged;
41  import static org.jomc.ant.test.support.Assert.assertMessageNotLogged;
42  import static org.jomc.ant.test.support.Assert.assertNoException;
43  import org.junit.Test;
44  
45  /**
46   * Test cases for class {@code org.jomc.ant.GenerateResourcesTask}.
47   *
48   * @author <a href="mailto:schulte2005@users.sourceforge.net">Christian Schulte</a>
49   * @version $JOMC: GenerateResourcesTaskTest.java 3879 2011-10-24 00:59:27Z schulte2005 $
50   */
51  public class GenerateResourcesTaskTest extends ResourceFileProcessorTaskTest
52  {
53  
54      /** Creates a new {@code GenerateResourcesTaskTest} instance. */
55      public GenerateResourcesTaskTest()
56      {
57          super();
58      }
59  
60      /** {@inheritDoc} */
61      @Override
62      public GenerateResourcesTask getJomcTask()
63      {
64          return (GenerateResourcesTask) super.getJomcTask();
65      }
66  
67      /** {@inheritDoc} */
68      @Override
69      protected GenerateResourcesTask newJomcTask()
70      {
71          return new GenerateResourcesTask();
72      }
73  
74      /** {@inheritDoc} */
75      @Override
76      protected String getBuildFileName()
77      {
78          return "generate-resources-test.xml";
79      }
80  
81      @Test
82      public final void testMissingResourcesDirectory() throws Exception
83      {
84          final AntExecutionResult r = this.executeTarget( "test-missing-resources-directory" );
85          assertException( r, BuildException.class );
86          assertExceptionMessage( r, "Mandatory attribute 'resourcesDirectory' is missing a value." );
87      }
88  
89      @Test
90      public final void testSpecificationNotFound() throws Exception
91      {
92          final AntExecutionResult r = this.executeTarget( "test-specification-not-found" );
93          assertNoException( r );
94          assertMessageLogged( r, "Specification 'DOES NOT EXIST' not found.", Project.MSG_WARN );
95      }
96  
97      @Test
98      public final void testImplementationNotFound() throws Exception
99      {
100         final AntExecutionResult r = this.executeTarget( "test-implementation-not-found" );
101         assertNoException( r );
102         assertMessageLogged( r, "Implementation 'DOES NOT EXIST' not found.", Project.MSG_WARN );
103     }
104 
105     @Test
106     public final void testModuleNotFound() throws Exception
107     {
108         final AntExecutionResult r = this.executeTarget( "test-module-not-found" );
109         assertNoException( r );
110         assertMessageLogged( r, "Module 'DOES NOT EXIST' not found.", Project.MSG_WARN );
111     }
112 
113     @Test
114     public final void testResourceProcessingDisabled() throws Exception
115     {
116         final AntExecutionResult r = this.executeTarget( "test-resource-processing-disabled" );
117         assertNoException( r );
118         assertMessageLogged( r, "Resource file processing disabled.", Project.MSG_INFO );
119     }
120 
121     @Test
122     public final void testGenerateAntTaskResources() throws Exception
123     {
124         final AntExecutionResult r = this.executeTarget( "test-generate-ant-task-resources" );
125         assertNoException( r );
126         assertMessageLogged( r, "Resource file processing successful.", Project.MSG_INFO );
127     }
128 
129     @Test
130     public final void testGenerateAntTaskResourcesWithRedundantResources() throws Exception
131     {
132         final AntExecutionResult r = this.executeTarget( "test-generate-ant-task-resources-with-redundant-resources" );
133         assertNoException( r );
134         assertMessageLogged( r, "Resource file processing successful.", Project.MSG_INFO );
135     }
136 
137     @Test
138     public final void testGenerateOneSpecification() throws Exception
139     {
140         final AntExecutionResult r = this.executeTarget( "test-generate-one-specification" );
141         assertNoException( r );
142         assertMessageNotLogged( r, "Specification 'org.jomc.ant.test.JomcTask' not found." );
143         assertMessageLogged( r, "Resource file processing successful.", Project.MSG_INFO );
144     }
145 
146     @Test
147     public final void testGenerateOneImplementation() throws Exception
148     {
149         final AntExecutionResult r = this.executeTarget( "test-generate-one-implementation" );
150         assertNoException( r );
151         assertMessageNotLogged( r, "Implementation 'org.jomc.ant.test.JomcToolTask' not found." );
152         assertMessageLogged( r, "Resource file processing successful.", Project.MSG_INFO );
153     }
154 
155     @Test
156     public final void testGenerateOneModule() throws Exception
157     {
158         final AntExecutionResult r = this.executeTarget( "test-generate-one-module" );
159         assertNoException( r );
160         assertMessageNotLogged( r, "Module 'JOMC Ant Tasks Tests' not found." );
161         assertMessageLogged( r, "Resource file processing successful.", Project.MSG_INFO );
162     }
163 
164     @Test
165     public final void testGenerateAntTaskResourcesWithClasspathref() throws Exception
166     {
167         final AntExecutionResult r = this.executeTarget( "test-generate-ant-task-resources-with-classpathref" );
168         assertNoException( r );
169         assertMessageLogged( r, "Resource file processing successful.", Project.MSG_INFO );
170     }
171 
172     @Test
173     public final void testGenerateAntTaskResourcesWithNestedClasspath() throws Exception
174     {
175         final AntExecutionResult r = this.executeTarget( "test-generate-ant-task-resources-with-nested-classpath" );
176         assertNoException( r );
177         assertMessageLogged( r, "Resource file processing successful.", Project.MSG_INFO );
178     }
179 
180     @Test
181     public final void testGenerateAntTaskResourcesAllAttributes() throws Exception
182     {
183         final AntExecutionResult r = this.executeTarget( "test-generate-ant-task-resources-all-attributes" );
184         assertNoException( r );
185         assertMessageLogged( r, "Resource file processing successful.", Project.MSG_INFO );
186     }
187 
188     @Test
189     public final void testGenerateAntTaskResourcesBrokenModel() throws Exception
190     {
191         final AntExecutionResult r = this.executeTarget( "test-generate-ant-task-resources-broken-model" );
192         assertException( r, ResourceProcessingException.class );
193     }
194 
195 }