Package org.jostraca.test

Source Code of org.jostraca.test.BasicScriptElementProcessorTest

/*
* Name:    BasicScriptElementProcessorTest
* 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.Block;
import org.jostraca.Property;
import org.jostraca.TemplateActionHandler;
import org.jostraca.BasicTemplateElementProcessor;
import org.jostraca.BasicScriptElementProcessor;

import org.jostraca.unit.BasicUnitList;

import org.jostraca.section.Section;

import org.jostraca.transform.TextualTransformManagerTable;

import org.jostraca.util.PropertySet;

import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.textui.TestRunner;

import java.io.File;
/* Import >> */


/** <b>Description:</b><br>
*  Test cases for TemplateElementProcessor objects.
*/
public class BasicScriptElementProcessorTest extends TestCase {

  public BasicScriptElementProcessorTest( String pName ) {
    super( pName );
  }

  public static TestSuite suite() {
    return new TestSuite( BasicScriptElementProcessorTest.class );
  }

  public static void main( String[] pArgs ) {
    TestRunner.run( suite() );
  }



  public void testCreate() throws Exception {
    PropertySet                 ps   = new PropertySet();
    ps.load( new File( "../../../../conf/system.conf" ) );
    TemplateActionHandler       tah  = new TemplateActionHandlerStub();
    BasicScriptElementProcessor bsep = create( ps, tah );
  }


  public void testProcessScript() throws Exception {
    TemplateActionHandlerStub tahs  = new TemplateActionHandlerStub();
    PropertySet               ps    = new PropertySet();

    ps.load( new File( "../../../../conf/system.conf" ) );
    BasicScriptElementProcessor bsep = create( ps, tahs );

    // REVIEW: this will have to change
    ps.set( Property.jostraca_old, "yes" );


    tahs.clear();
    String s01 = "foo = bar;";
    Block  b01 = new Block( Block.TYPE_script, s01 );
    assertTrue( bsep.isMatch( b01 ) );
    bsep.process( b01 );
    assertEquals( (s01+BasicTemplateElementProcessor.NEWLINE), tahs.getLastAppendedContent() );

    tahs.clear();
    String s02 = "!foo bar;";
    Block  b02 = new Block( Block.TYPE_script, s02 );
    assertTrue( bsep.isMatch( b02 ) );
    bsep.process( b02 );
    assertTrue( ("foo bar;"+BasicTemplateElementProcessor.NEWLINE).equals( tahs.getLastAppendedContent() ) );
    assertTrue( Section.NAME_declare.equals( tahs.getLastSectionName() ) );

    tahs.clear();
    String s03 = " ! foo bar;";
    Block  b03 = new Block( Block.TYPE_script, s03 );
    assertTrue( bsep.isMatch( b03 ) );
    bsep.process( b03 );
    assertTrue( (" foo bar;"+BasicTemplateElementProcessor.NEWLINE).equals( tahs.getLastAppendedContent() ) );
    assertTrue( Section.NAME_declare.equals( tahs.getLastSectionName() ) );

    tahs.clear();
    String s04 = "foo! bar;";
    Block  b04 = new Block( Block.TYPE_script, s04 );
    assertTrue( bsep.isMatch( b04 ) );
    bsep.process( b04 );
    assertTrue( (" bar;"+BasicTemplateElementProcessor.NEWLINE).equals( tahs.getLastAppendedContent() ) );
    assertTrue( "foo".equals( tahs.getLastSectionName() ) );

    tahs.clear();
    String s05 = "foo ! bar;";
    Block  b05 = new Block( Block.TYPE_script, s05 );
    assertTrue( bsep.isMatch( b05 ) );
    bsep.process( b05 );
    assertTrue( ("foo ! bar;"+BasicTemplateElementProcessor.NEWLINE).equals( tahs.getLastAppendedContent() ) );
    assertEquals( Section.NAME_body, tahs.getLastSectionName() );

  }


  private BasicScriptElementProcessor create( PropertySet           pPropertySet,
                                              TemplateActionHandler pTemplateActionHandler ) throws Exception {

    BasicUnitList bul = new BasicUnitList();
    TextualTransformManagerTable ttmt = new TextualTransformManagerTable( pPropertySet );
    BasicScriptElementProcessor  bsep = new BasicScriptElementProcessor( bul, pTemplateActionHandler,
                                                                         pPropertySet, ttmt );
    return bsep;
  }


}




TOP

Related Classes of org.jostraca.test.BasicScriptElementProcessorTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.