01: /*
02: (c) Copyright 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP, all rights reserved.
03: [See end of file]
04: $Id: TestReaderEvents.java,v 1.7 2008/01/02 12:04:43 andy_seaborne Exp $
05: */
06: package com.hp.hpl.jena.rdf.model.test;
07:
08: import java.io.StringReader;
09:
10: import com.hp.hpl.jena.graph.*;
11: import com.hp.hpl.jena.rdf.model.*;
12:
13: import junit.framework.TestSuite;
14:
15: /**
16: TestReaderEvents - test that reader events are issued
17: @author kers
18: */
19: public class TestReaderEvents extends ModelTestBase {
20: public TestReaderEvents(String name) {
21: super (name);
22: }
23:
24: public static TestSuite suite() {
25: return new TestSuite(TestReaderEvents.class);
26: }
27:
28: public void testXMLReaderEvents() {
29: String emptyModel = "<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'></rdf:RDF>";
30: testReaderEvent("RDF/XML", emptyModel);
31: }
32:
33: public void testN3ReaderEvents() {
34: testReaderEvent("N3", "");
35: }
36:
37: public void testNTriplesReaderEvents() {
38: testReaderEvent("N-TRIPLE", "");
39: }
40:
41: public void testReaderEvent(String language, String emptyModel) {
42: Model m = ModelFactory.createDefaultModel();
43: RecordingModelListener L = new RecordingModelListener();
44: m.register(L);
45: RDFReader r = m.getReader(language);
46: StringReader stringReader = new StringReader(emptyModel);
47: r.read(m, stringReader, "");
48: L.assertHasStart(new Object[] { "someEvent", m,
49: GraphEvents.startRead });
50: L.assertHasEnd(new Object[] { "someEvent", m,
51: GraphEvents.finishRead });
52: }
53:
54: }
55:
56: /*
57: (c) Copyright 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
58: All rights reserved.
59:
60: Redistribution and use in source and binary forms, with or without
61: modification, are permitted provided that the following conditions
62: are met:
63:
64: 1. Redistributions of source code must retain the above copyright
65: notice, this list of conditions and the following disclaimer.
66:
67: 2. Redistributions in binary form must reproduce the above copyright
68: notice, this list of conditions and the following disclaimer in the
69: documentation and/or other materials provided with the distribution.
70:
71: 3. The name of the author may not be used to endorse or promote products
72: derived from this software without specific prior written permission.
73:
74: THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
75: IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
76: OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
77: IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
78: INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
79: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
80: DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
81: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
82: (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
83: THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
84: */
|