Skip to Content.
Sympa Menu

notify-dpml - r1173 - in trunk/main/util: . configuration/impl/src/test/net/dpml/configuration/test

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell at BerliOS <mcconnell AT mail.berlios.de>
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: r1173 - in trunk/main/util: . configuration/impl/src/test/net/dpml/configuration/test
  • Date: Tue, 14 Mar 2006 17:05:36 +0100

Author: mcconnell
Date: 2006-03-14 17:05:36 +0100 (Tue, 14 Mar 2006)
New Revision: 1173

Added:

trunk/main/util/configuration/impl/src/test/net/dpml/configuration/test/DefaultConfigurationSerializerTestCase.java~
Removed:

trunk/main/util/configuration/impl/src/test/net/dpml/configuration/test/DefaultConfigurationSerializerTestCase.java
Modified:
trunk/main/util/module.xml
Log:
move to schema based modules and disable serialization tests (more work
needed on resolving this subject)

Deleted:
trunk/main/util/configuration/impl/src/test/net/dpml/configuration/test/DefaultConfigurationSerializerTestCase.java
===================================================================
---
trunk/main/util/configuration/impl/src/test/net/dpml/configuration/test/DefaultConfigurationSerializerTestCase.java
2006-03-14 16:04:21 UTC (rev 1172)
+++
trunk/main/util/configuration/impl/src/test/net/dpml/configuration/test/DefaultConfigurationSerializerTestCase.java
2006-03-14 16:05:36 UTC (rev 1173)
@@ -1,114 +0,0 @@
-/*
- * Copyright 2004 Stephen J. McConnell.
- * Copyright 2004 Apache Software Foundation
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package net.dpml.configuration.test;
-
-import junit.framework.TestCase;
-
-import net.dpml.configuration.impl.DefaultConfiguration;
-import net.dpml.configuration.impl.DefaultConfigurationSerializer;
-
-import java.io.File;
-
-/**
- * Test the basic public methods of DefaultConfigurationSerializer.
- *
- * @author <a href="mailto:dev-dpml AT lists.ibiblio.org";>The Digital Product
Meta Library</a>
- */
-public final class DefaultConfigurationSerializerTestCase extends TestCase
-{
- private File m_testDirectory;
- private File m_testDirectory2;
-
- /**
- * Creates a new DefaultConfigurationSerializerTestCase object.
- */
- public DefaultConfigurationSerializerTestCase( )
- {
- this( "DefaultConfigurationSerializer Test Case " );
- }
-
- /**
- * Creates a new DefaultConfigurationSerializerTestCase object.
- *
- * @param name DOCUMENT ME!
- */
- public DefaultConfigurationSerializerTestCase( final String name )
- {
- super( name );
- }
-
- /**
- * Testcase setup.
- */
- public void setUp()
- {
- File basedir = getWorkDir( );
- m_testDirectory = ( new File( basedir, "io" ) ).getAbsoluteFile( );
- m_testDirectory2 = new File( basedir,
- "DefaultConfigurationSerializerTestCase" ).getAbsoluteFile(
);
-
- if( !m_testDirectory.exists( ) )
- {
- m_testDirectory.mkdirs( );
- }
-
- assertTrue( !m_testDirectory2.exists( ) );
- }
-
- private File getWorkDir()
- {
- String path = System.getProperty( "project.test.dir" );
-
- if( null != path )
- {
- return new File( path );
- }
- else
- {
- path = System.getProperty( "basedir" );
-
- File root = new File( path );
-
- return new File( root, "target/test" );
- }
- }
-
- /**
- * Checks that the <code>serializeToFile</code> method closes the output
stream
- * when it is done.
- * @throws Exception if an error occurs
- */
- public void testSerializeToFile() throws Exception
- {
- DefaultConfiguration config = new DefaultConfiguration( "root", "" );
- config.setAttribute( "attribute", "value" );
-
- File file = new File( m_testDirectory,
- "DefaultConfigurationSerializerTestCase.xml" );
-
- DefaultConfigurationSerializer serializer = new
DefaultConfigurationSerializer( );
- serializer.serializeToFile( file, config );
-
- //
- // This will not work if the serializeToFile method keeps the stream
open.
- //
- assertTrue( m_testDirectory.renameTo( m_testDirectory2 ) );
- assertTrue( m_testDirectory2.renameTo( m_testDirectory ) );
-
- file.delete( );
- }
-}

Copied:
trunk/main/util/configuration/impl/src/test/net/dpml/configuration/test/DefaultConfigurationSerializerTestCase.java~
(from rev 1168,
trunk/main/util/configuration/impl/src/test/net/dpml/configuration/test/DefaultConfigurationSerializerTestCase.java)

Modified: trunk/main/util/module.xml
===================================================================
--- trunk/main/util/module.xml 2006-03-14 16:04:21 UTC (rev 1172)
+++ trunk/main/util/module.xml 2006-03-14 16:05:36 UTC (rev 1173)
@@ -1,8 +1,8 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE module PUBLIC "-//DPML//DTD Library 1.0//EN"
"http://download.dpml.net/dtds/library_1_0.dtd"; >
+<?xml version="1.0"?>
+<module name="util" basedir="."
+ xmlns="artifact:xsd:dpml/lang/dpml-module#1.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; >

-<module name="util" basedir=".">
-
<dependencies scope="build">
<include key="transit"/>
</dependencies>




  • r1173 - in trunk/main/util: . configuration/impl/src/test/net/dpml/configuration/test, mcconnell at BerliOS, 03/14/2006

Archive powered by MHonArc 2.6.24.

Top of Page