01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: package org.apache.cocoon.transformation;
19:
20: import org.apache.avalon.framework.parameters.Parameters;
21: import org.apache.cocoon.SitemapComponentTestCase;
22:
23: /**
24: *
25: *
26: * @author <a href="mailto:stephan@apache.org">Stephan Michels </a>
27: * @version CVS $Id: ParserTransformerTestCase.java 433543 2006-08-22 06:22:54Z crossley $
28: */
29: public class ParserTransformerTestCase extends SitemapComponentTestCase {
30:
31: public void testParserTransformer1() throws Exception {
32:
33: String src = "resource://org/apache/cocoon/transformation/parsertest-grammar1.xml";
34: Parameters parameters = new Parameters();
35: String input = "resource://org/apache/cocoon/transformation/parsertest-input1.xml";
36: String result = "resource://org/apache/cocoon/transformation/parsertest-result1.xml";
37:
38: assertEqual(load(result), transform("parser", src, parameters,
39: load(input)));
40: }
41:
42: public void testParserTransformer2() throws Exception {
43:
44: String src = "resource://org/apache/cocoon/transformation/parsertest-grammar1.xml";
45: Parameters parameters = new Parameters();
46: String input = "resource://org/apache/cocoon/transformation/parsertest-input2.xml";
47: String result = "resource://org/apache/cocoon/transformation/parsertest-result2.xml";
48:
49: assertEqual(load(result), transform("recovery-parser", src,
50: parameters, load(input)));
51: }
52:
53: /*public void testParserTransformer3() throws Exception {
54: String src = "resource://org/apache/cocoon/transformation/parsertest-grammar1.xml";
55: Parameters parameters = new Parameters();
56: String input = "resource://org/apache/cocoon/transformation/parsertest-input3.xml";
57: String result = "resource://org/apache/cocoon/transformation/parsertest-result3.xml";
58:
59: assertEqual(load(result), transform("recovery-parser", src, parameters, load(input)));
60: }*/
61: }
|