/*
* Name: BasicTemplateScriptTest
* Authors: Richard Rodger
* Release: 0.3
*
* Copyright (c) 2001-2003 Richard Rodger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
* by the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
// package
package org.jostraca.test;
/* Import << */
import org.jostraca.Property;
import org.jostraca.TemplateScript;
import org.jostraca.BasicTemplateScript;
import org.jostraca.util.PropertySet;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
/* Import >> */
/** <b>Description:</b><br>
* Test cases for BasicTemplateScript
*/
public class BasicTemplateScriptTest extends TestCase {
public BasicTemplateScriptTest( String pName ) {
super( pName );
}
public static TestSuite suite() {
return new TestSuite( BasicTemplateScriptTest.class );
}
public static void main( String[] pArgs ) {
TestRunner.run( suite() );
}
public void testByPath() {
TemplateScript bts = null;
PropertySet ps = new PropertySet();
try {
bts = BasicTemplateScript.defineByPath( null );
fail();
} catch( Exception e) {
//e.printStackTrace();
assertTrue( true );
}
try {
bts = BasicTemplateScript.defineByPath( "foo.jtm" );
assertTrue( "".equals( bts.getOriginalScriptName() ) );
assertTrue( "".equals( bts.getCanonicalScriptName( ps ) ) );
} catch( Exception e) {
e.printStackTrace();
fail();
}
try {
bts.setByPath( null );
fail();
} catch( Exception e) {
//e.printStackTrace();
assertTrue( true );
}
try {
bts.setByPath( "foo.jtm" );
assertTrue( "".equals( bts.getOriginalScriptName() ) );
assertTrue( "".equals( bts.getCanonicalScriptName( ps ) ) );
} catch( Exception e) {
e.printStackTrace();
fail();
}
try {
bts.setByPath( "foo_bar.jtm" );
assertTrue( "bar".equals( bts.getOriginalScriptName() ) );
assertTrue( "bar".equals( bts.getCanonicalScriptName( ps ) ) );
} catch( Exception e) {
e.printStackTrace();
fail();
}
try {
ps.set( Property.PREFIX_jostraca_TemplateScript_CanonicalName + "br", "bar" );
bts.setByPath( "foo_br.jtm" );
assertTrue( "br".equals( bts.getOriginalScriptName() ) );
assertTrue( "bar".equals( bts.getCanonicalScriptName( ps ) ) );
} catch( Exception e) {
e.printStackTrace();
fail();
}
}
public void testByProperty() {
TemplateScript bts = null;
PropertySet ps = new PropertySet();
try {
bts = BasicTemplateScript.defineByProperty( null );
fail();
} catch( Exception e) {
//e.printStackTrace();
assertTrue( true );
}
try {
bts = BasicTemplateScript.defineByProperty( ps );
assertTrue( "".equals( bts.getOriginalScriptName() ) );
assertTrue( "".equals( bts.getCanonicalScriptName( ps ) ) );
} catch( Exception e) {
e.printStackTrace();
fail();
}
try {
ps.set( Property.main_TemplateScript, "bar" );
bts = BasicTemplateScript.defineByProperty( ps );
assertTrue( "bar".equals( bts.getOriginalScriptName() ) );
assertTrue( "bar".equals( bts.getCanonicalScriptName( ps ) ) );
} catch( Exception e) {
e.printStackTrace();
fail();
}
try {
bts.setByProperty( null );
fail();
} catch( Exception e) {
//e.printStackTrace();
assertTrue( true );
}
try {
ps = new PropertySet();
bts = BasicTemplateScript.defineByProperty( ps );
bts.setByProperty( ps );
assertTrue( "".equals( bts.getOriginalScriptName() ) );
assertTrue( "".equals( bts.getCanonicalScriptName( ps ) ) );
} catch( Exception e) {
e.printStackTrace();
fail();
}
try {
ps.set( Property.main_TemplateScript, "bar" );
bts.setByProperty( ps );
assertTrue( "bar".equals( bts.getOriginalScriptName() ) );
assertTrue( "bar".equals( bts.getCanonicalScriptName( ps ) ) );
} catch( Exception e) {
e.printStackTrace();
fail();
}
try {
ps.set( Property.main_TemplateScript, "br" );
ps.set( Property.PREFIX_jostraca_TemplateScript_CanonicalName + "br", "bar" );
bts.setByProperty( ps );
assertTrue( "br".equals( bts.getOriginalScriptName() ) );
assertTrue( "bar".equals( bts.getCanonicalScriptName( ps ) ) );
} catch( Exception e) {
e.printStackTrace();
fail();
}
}
/** existing definition is not deleted by undefined main.TemplateScript property */
public void testOverride() {
try {
PropertySet ps = new PropertySet();
TemplateScript ts = BasicTemplateScript.defineByProperty( ps );
ts.setByPath( "foo_bar.jtm" );
ts.setByProperty( ps );
assertTrue( "bar".equals( ts.getOriginalScriptName() ) );
assertTrue( "bar".equals( ts.getCanonicalScriptName( ps ) ) );
} catch( Exception e) {
e.printStackTrace();
fail();
}
}
}