blob: 15463d38f8f2addcac2fefd1d2f14e226738f2c6 [file] [log] [blame]
/*
* $Id$
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.tiles.autotag.generate;
import static org.easymock.EasyMock.*;
import static org.junit.Assert.*;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.apache.tiles.autotag.generate.BasicTemplateGenerator.TCGeneratorDirectoryPair;
import org.apache.tiles.autotag.generate.BasicTemplateGenerator.TSGeneratorDirectoryPair;
import org.apache.tiles.autotag.model.TemplateClass;
import org.apache.tiles.autotag.model.TemplateSuite;
import org.junit.Test;
/**
* Tests {@link BasicTemplateGenerator}.
*
* @version $Rev$ $Date$
*/
public class BasicTemplateGeneratorTest {
/**
* Test method for {@link BasicTemplateGenerator#generate(String, TemplateSuite, Map)}.
* @throws IOException If something goes wrong.
*/
@Test
public void testGenerate() throws IOException {
File file = File.createTempFile("tiles", "template");
file.deleteOnExit();
TemplateSuite suite = createMock(TemplateSuite.class);
TemplateClass templateClass = createMock(TemplateClass.class);
TemplateSuiteGenerator templateSuiteGenerator = createMock(TemplateSuiteGenerator.class);
TemplateClassGenerator templateClassGenerator = createMock(TemplateClassGenerator.class);
@SuppressWarnings("unchecked")
Map<String, String> parameters = createMock(Map.class);
List<TemplateClass> templateClasses = new ArrayList<TemplateClass>();
templateClasses.add(templateClass);
expect(suite.getTemplateClasses()).andReturn(templateClasses);
templateSuiteGenerator.generate(file, "my.package", suite, parameters);
templateClassGenerator.generate(file, "my.package", suite, templateClass, parameters, "my.Runtime");
replay(suite, templateClass, templateSuiteGenerator, templateClassGenerator, parameters);
TSGeneratorDirectoryPair tsPair = new TSGeneratorDirectoryPair(file, templateSuiteGenerator);
TCGeneratorDirectoryPair tcPair = new TCGeneratorDirectoryPair(file, templateClassGenerator);
List<TSGeneratorDirectoryPair> tsList = new ArrayList<BasicTemplateGenerator.TSGeneratorDirectoryPair>();
tsList.add(tsPair);
List<TCGeneratorDirectoryPair> tcList = new ArrayList<BasicTemplateGenerator.TCGeneratorDirectoryPair>();
tcList.add(tcPair);
BasicTemplateGenerator generator = new BasicTemplateGenerator(tsList, tcList, true, false);
assertTrue(generator.isGeneratingClasses());
assertFalse(generator.isGeneratingResources());
generator.generate("my.package", suite, parameters, "my.Runtime");
verify(suite, templateClass, templateSuiteGenerator, templateClassGenerator, parameters);
}
}