📄 testfilegraph.java
字号:
/*
(c) Copyright 2003, 2004, 2005, 2006, 2007 Hewlett-Packard Development Company, LP
[See end of file]
$Id: TestFileGraph.java,v 1.19 2007/01/02 11:50:06 andy_seaborne Exp $
*/
package com.hp.hpl.jena.graph.test;
import com.hp.hpl.jena.graph.*;
import com.hp.hpl.jena.graph.impl.*;
import com.hp.hpl.jena.rdf.model.*;
import com.hp.hpl.jena.shared.ReificationStyle;
import com.hp.hpl.jena.util.FileUtils;
import java.io.*;
import java.util.*;
import junit.framework.*;
/**
Test FileGraph by seeing if we can make some file graphs and then read
them back.
@author hedgehog
*/
public class TestFileGraph extends GraphTestBase
{
public TestFileGraph( String name )
{ super( name ); }
// TODO want a wider variety of cases, now we've discovered how to abstract.
public static TestSuite suite()
{
TestSuite result = new TestSuite( TestFileGraph.class );
result.addTest( new Case( "x /R y", "xxxA", ".rdf" ) );
result.addTest( new Case( "x /R y", "xxxB", ".n3" ) );
result.addTest( new Case( "x /R y", "xxxC", ".nt" ) );
result.addTest( new Case( "x /R y; p /R q", "xxxD", ".rdf" ) );
result.addTest( new Case( "x /R y; p /R q", "xxxE", ".n3" ) );
result.addTest( new Case( "x /R y; p /R q", "xxxF", ".nt" ) );
result.addTest( new Case( "http://domain/S ftp:ftp/P O", "xxxG", ".rdf" ) );
result.addTest( new Case( "http://domain/S ftp:ftp/P O", "xxxH", ".nt" ) );
result.addTest( new Case( "http://domain/S ftp:ftp/P O", "xxxI", ".n3" ) );
return result;
}
public void testPlausibleGraphname()
{
assertTrue( FileGraph.isPlausibleGraphName( "agnessi.rdf" ) );
assertTrue( FileGraph.isPlausibleGraphName( "parabola.nt" ) );
assertTrue( FileGraph.isPlausibleGraphName( "hyperbola.n3" ) );
assertTrue( FileGraph.isPlausibleGraphName( "chris.dollin.n3" ) );
assertTrue( FileGraph.isPlausibleGraphName( "hedgehog.spine.end.rdf" ) );
}
public void testisPlausibleUppercaseGraphname()
{
assertTrue( FileGraph.isPlausibleGraphName( "LOUDER.RDF" ) );
assertTrue( FileGraph.isPlausibleGraphName( "BRIDGE.NT" ) );
assertTrue( FileGraph.isPlausibleGraphName( "NOTN2.N3" ) );
assertTrue( FileGraph.isPlausibleGraphName( "chris.dollin.N3" ) );
assertTrue( FileGraph.isPlausibleGraphName( "hedgehog.spine.end.RDF" ) );
}
public void testImPlausibleGraphName()
{
assertFalse( FileGraph.isPlausibleGraphName( "undecorated" ) );
assertFalse( FileGraph.isPlausibleGraphName( "danger.exe" ) );
assertFalse( FileGraph.isPlausibleGraphName( "pretty.jpg" ) );
assertFalse( FileGraph.isPlausibleGraphName( "FileGraph.java" ) );
assertFalse( FileGraph.isPlausibleGraphName( "infix.rdf.c" ) );
}
public void testTransactionCommit()
{
Graph initial = graphWith( "initial hasValue 42; also hasURI hello" );
Graph extra = graphWith( "extra hasValue 17; also hasURI world" );
File foo = FileUtils.tempFileName( "fileGraph", ".nt" );
Graph g = new FileGraph( foo, true, true );
g.getBulkUpdateHandler().add( initial );
g.getTransactionHandler().begin();
g.getBulkUpdateHandler().add( extra );
g.getTransactionHandler().commit();
Graph union = graphWith( "" );
union.getBulkUpdateHandler().add( initial );
union.getBulkUpdateHandler().add( extra );
assertIsomorphic( union, g );
Model inFile = ModelFactory.createDefaultModel();
inFile.read( "file:///" + foo, "N-TRIPLES" );
assertIsomorphic( union, inFile.getGraph() );
}
public void testTransactionAbort()
{
Graph initial = graphWith( "initial hasValue 42; also hasURI hello" );
Graph extra = graphWith( "extra hasValue 17; also hasURI world" );
File foo = FileUtils.tempFileName( "fileGraph", ".n3" );
Graph g = new FileGraph( foo, true, true );
g.getBulkUpdateHandler().add( initial );
g.getTransactionHandler().begin();
g.getBulkUpdateHandler().add( extra );
g.getTransactionHandler().abort();
assertIsomorphic( initial, g );
}
public void testTransactionCommitThenAbort()
{
Graph initial = graphWith( "A pings B; B pings C" );
Graph extra = graphWith( "C pingedBy B; fileGraph rdf:type Graph" );
File foo = FileUtils.tempFileName( "fileGraph", ".nt" );
Graph g = new FileGraph( foo, true, true );
g.getTransactionHandler().begin();
g.getBulkUpdateHandler().add( initial );
g.getTransactionHandler().commit();
g.getTransactionHandler().begin();
g.getBulkUpdateHandler().add( extra );
g.getTransactionHandler().abort();
assertIsomorphic( initial, g );
Model inFile = ModelFactory.createDefaultModel();
inFile.read( "file:///" + foo, "N-TRIPLES" );
assertIsomorphic( initial, inFile.getGraph() );
}
public void testClosingNotifys()
{
final List history = new ArrayList();
FileGraph.NotifyOnClose n = new FileGraph.NotifyOnClose()
{
public void notifyClosed( File f )
{ history.add( f ); }
};
File file = FileUtils.tempFileName( "fileGraph", ".nt" );
Graph g = new FileGraph( n, file, true, true, ReificationStyle.Minimal );
assertEquals( new ArrayList(), history );
g.close();
assertEquals( oneElementList( file ), history );
}
protected List oneElementList( Object x )
{
List result = new ArrayList();
result.add( x );
return result;
}
/**
Test that the graph encoded as the test-string content can be
written out to a temporary file generated from the prefix and suffix,
and then read back correctly. The temporary files are marked as
delete-on-exit to try and avoid cluttering the user's filespace ...
*/
private static class Case extends TestFileGraph
{
String content;
String prefix;
String suffix;
Case( String content, String prefix, String suffix )
{
super( "Case: " + content + " in " + prefix + "*" + suffix );
this.content = content;
this.prefix = prefix;
this.suffix = suffix;
}
public void runTest()
{
File foo = FileUtils.tempFileName( prefix, suffix );
Graph original = graphWith( content );
Graph g = new FileGraph( foo, true, true );
g.getBulkUpdateHandler().add( original );
g.close();
Graph g2 = new FileGraph( foo, false, true );
assertIsomorphic( original, g2 );
g2.close();
}
}
}
/*
(c) Copyright 2003, 2004, 2005, 2006, 2007 Hewlett-Packard Development Company, LP
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -