Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
// This Source Code is in the Public Domain per: http://unlicense.org
package org.litesoft.testplan;

import org.litesoft.commonfoundation.base.*;
import org.litesoft.commonfoundation.typeutils.*;
import org.litesoft.util.*;
import org.litesoft.xml.*;

import java.io.*;
import java.util.*;

public class TestPlanParser {
    protected List<TestPlanStep> mSteps = new ArrayList<TestPlanStep>();
    private InnerParser mParser;

    public TestPlanParser( String pTestPlanFilePath ) {
        (mParser = createInnerParser( pTestPlanFilePath )).addStep();
    }

    public TestPlanStep[] toSteps() {
        return mSteps.toArray( new TestPlanStep[mSteps.size()] );
    }

    public TestPlanParser parse() {
        mParser.parse();
        return this;
    }

    protected InnerParser createInnerParser( String pTestPlanFilePath, PullParserProxy pParser ) {
        return new InnerParser( pTestPlanFilePath, pParser );
    }

    protected InnerParser createInnerParser( String pTestPlanFilePath ) {
        FileReader zReader;
        try {
            zReader = new FileReader( pTestPlanFilePath );
        }
        catch ( FileNotFoundException e ) {
            throw new XML_RuntimeException( e );
        }
        return createInnerParser( pTestPlanFilePath, new PullParserProxy().setInput( zReader ) );
    }

    protected void processCapture( String pTestPlanFilePath, String pSet ) {
        pSet = Utils.relativePath( pTestPlanFilePath, pSet );
        int zPreCapture = mSteps.size();
        createInnerParser( pSet ).parse();
        int zPostCapture = mSteps.size();
        if ( zPostCapture > zPreCapture ) {
            String zTo = Utils.relativePath( pSet, "Current" );
            if ( !new File( zTo ).isDirectory() ) {
                System.out.println( "Not a Directory; Capture To:" + zTo );
            } else {
                String zFrom = ConstrainTo.significantOrNull( System.getProperty( "CaptureFrom" ) );
                if ( zFrom != null ) {
                    if ( !new File( zFrom = Utils.relativePath( pSet, zFrom ) ).isDirectory() ) {
                        System.out.println( "Not a Directory; Capture From:" + zFrom );
                    } else {
                        mSteps.get( zPostCapture - 1 ).setFromTo( zFrom, zTo );
                    }
                }
            }
        }
    }

    protected class InnerParser {
        private String mTestPlanFilePath;
        protected PullParserProxy mParser;
        protected String mStepNumber = "";
        protected String mSection = null;
        protected TestPlanAction mAction = null;
        protected String mPreText = null;
        protected String mPostText = null;

        protected InnerParser( String pTestPlanFilePath, PullParserProxy pParser ) {
            mTestPlanFilePath = pTestPlanFilePath;
            mParser = pParser;
        }

        protected void addStep() {
            mSteps.add( new TestPlanStep( mSection, mStepNumber, mAction, mPreText, mPostText ) );
        }

        protected void parse() {
            mParser.validateNextIsStartTag( "Plan" );
            while ( PullParserProxy.START_TAG == mParser.getNextTag( "Plan" ) ) {
                if ( !mParser.isStartTag() ) {
                    throw new XML_RuntimeException( "Child of Plan not STart Tag | " + mTestPlanFilePath );
                }
                String zTagName = mParser.getTagName();
                if ( "Section".equals( zTagName ) ) {
                    mSection = Confirm.significant( "Section", mParser.getAttributeValue( "of" ) );
                    while ( PullParserProxy.START_TAG == mParser.getNextTag( "Section" ) ) {
                        mParser.validateIsStartTag( "Step" );
                        mStepNumber = ConstrainTo.notNull( mParser.getAttributeValue( "number" ) ).trim();
                        parseStep();
                    }
                    continue;
                }
                if ( "Capture".equals( zTagName ) ) {
                    String zSet = Confirm.significant( "Capture set", mParser.getAttributeValue( "set" ) );
                    mParser.validateNextIsEndTag( "Capture" );
                    processCapture( mTestPlanFilePath, zSet );
                    continue;
                }
                throw new XML_RuntimeException( "Child of Plan not: Section or Capture; but '" + zTagName + "' | " + mTestPlanFilePath );
            }
        }

        protected void parseStep() {
            mAction = null;
            mPreText = null;
            mPostText = null;
            while ( PullParserProxy.START_TAG == mParser.getNextTag( "Step" ) ) {
                String zTagName = mParser.getTagName();
                if ( "Text".equals( zTagName ) ) {
                    if ( mPreText != null ) {
                        processTextFor( "Pre", mPreText );
                    } else if ( mPostText != null ) {
                        processTextFor( "Post", mPostText );
                    } else {
                        mPreText = mPostText = processTextFor( "Text", null );
                    }
                } else if ( "Pre".equals( zTagName ) ) {
                    mPreText = processTextFor( "Pre", mPreText );
                } else if ( "Post".equals( zTagName ) ) {
                    mPostText = processTextFor( "Post", mPostText );
                } else if ( mAction == null ) {
                    mAction = parseActionTag( mParser, mStepNumber, mTestPlanFilePath );
                } else {
                    throw new XML_RuntimeException( "Appears to be Multiple Actions in Step " + mStepNumber + ", at: " + zTagName + " | " + mTestPlanFilePath );
                }
            }
            addStep();
        }

        protected String processTextFor( String pTag, String pExisting ) {
            if ( pExisting != null ) {
                throw new XML_RuntimeException( "ALready " + pTag + " text in Step: " + mStepNumber + " | " + mTestPlanFilePath );
            }
            String rv = Strings.normalizeNewLines( ConstrainTo.notNull( mParser.getTextFromTextElement() ).trim() );
            rv = Strings.replace( rv, '\t', " " );
            while ( rv.contains( "\n " ) ) {
                rv = Strings.replace( rv, "\n ", "\n" );
            }
            while ( rv.contains( " \n" ) ) {
                rv = Strings.replace( rv, " \n", "\n" );
            }
            while ( rv.contains( "  " ) ) {
                rv = Strings.replace( rv, "  ", " " );
            }
            return rv;
        }
    }

    protected Map<String, TestPlanActionFactory> mFactories = new HashMap<String, TestPlanActionFactory>();

    protected TestPlanAction parseActionTag( PullParserProxy pParser, String pStepNumber, String pTestPlanFilePath ) {
        Exception zError = null;
        String zTagName = pParser.getTagName();
        String zClassName = getClass().getName() + "ActionFactory" + zTagName;
        TestPlanActionFactory zFactory = mFactories.get( zTagName );
        if ( zFactory == null ) {
            try {
                Class<?> zClass = Class.forName( zClassName );
                zFactory = (TestPlanActionFactory) zClass.newInstance();
            }
            catch ( Exception e ) {
                zError = e;
            }
        }
        if ( zFactory == null ) {
            throw new XML_RuntimeException(
                    "Unknown Action Tag in Step " + pStepNumber + ", of: " + zTagName + " | " + pTestPlanFilePath + " using: " + zClassName, zError );
        }
        mFactories.put( zTagName, zFactory );
        try {
            return zFactory.parse( pParser );
        }
        catch ( RuntimeException e ) {
            throw new XML_RuntimeException(
                    "Unable to parse Action Tag in Step " + pStepNumber + ", of: " + zTagName + " | " + pTestPlanFilePath + " using: " + zClassName, e );
        }
    }
}

Commits for litesoft/trunk/Java/core/Server/src/org/litesoft/testplan/TestPlanParser.java

Diff revisions: vs.
Revision Author Commited Message
950 Diff Diff GeorgeS picture GeorgeS Thu 19 Jun, 2014 17:57:04 +0000

New Lines

948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

947 Diff Diff GeorgeS picture GeorgeS Fri 06 Jun, 2014 23:36:56 +0000

Correct Spelling of package!

939 Diff Diff GeorgeS picture GeorgeS Mon 02 Jun, 2014 21:30:31 +0000

Extracting commonfoundation

821 Diff Diff GeorgeS picture GeorgeS Sun 19 Aug, 2012 00:08:41 +0000
803 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 04:08:34 +0000
802 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 04:04:47 +0000
801 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 03:59:02 +0000
151 Diff Diff GeorgeS picture GeorgeS Thu 17 Mar, 2011 04:16:22 +0000
49 GeorgeS picture GeorgeS Mon 12 Apr, 2010 02:59:10 +0000

License Text