summaryrefslogtreecommitdiff
path: root/comphelper/qa
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/qa')
-rw-r--r--comphelper/qa/complex/comphelper/Map.java553
-rw-r--r--comphelper/qa/complex/comphelper/SequenceOutputStreamUnitTest.java188
-rw-r--r--comphelper/qa/complex/comphelper_all.sce2
-rw-r--r--comphelper/qa/string/test_string.cxx301
-rw-r--r--comphelper/qa/string/test_string_noadditional.cxx33
-rw-r--r--comphelper/qa/version.map33
-rw-r--r--comphelper/qa/weakbag/makefile.mk53
-rw-r--r--comphelper/qa/weakbag/test_weakbag.cxx74
-rw-r--r--comphelper/qa/weakbag/test_weakbag_noadditional.cxx33
9 files changed, 0 insertions, 1270 deletions
diff --git a/comphelper/qa/complex/comphelper/Map.java b/comphelper/qa/complex/comphelper/Map.java
deleted file mode 100644
index 05588db574..0000000000
--- a/comphelper/qa/complex/comphelper/Map.java
+++ /dev/null
@@ -1,553 +0,0 @@
-/*
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- */
-
-package complex.comphelper;
-
-import com.sun.star.beans.IllegalTypeException;
-import com.sun.star.beans.Pair;
-import com.sun.star.container.ContainerEvent;
-import com.sun.star.container.XContainer;
-import com.sun.star.container.XContainerListener;
-import com.sun.star.container.XElementAccess;
-import com.sun.star.container.XEnumerableMap;
-import com.sun.star.container.XEnumeration;
-import com.sun.star.container.XIdentifierAccess;
-import com.sun.star.container.XMap;
-import com.sun.star.container.XSet;
-import com.sun.star.form.XFormComponent;
-// import com.sun.star.lang.DisposedException;
-import com.sun.star.lang.EventObject;
-import com.sun.star.lang.Locale;
-// import com.sun.star.lang.NoSupportException;
-import com.sun.star.lang.XMultiServiceFactory;
-import com.sun.star.uno.Any;
-import com.sun.star.uno.AnyConverter;
-import com.sun.star.uno.Type;
-import com.sun.star.uno.TypeClass;
-import com.sun.star.uno.UnoRuntime;
-import com.sun.star.uno.XInterface;
-import java.util.HashSet;
-import java.util.Set;
-
-// import org.junit.After;
-import org.junit.AfterClass;
-// import org.junit.Before;
-import org.junit.BeforeClass;
-import org.junit.Test;
-import org.openoffice.test.OfficeConnection;
-import static org.junit.Assert.*;
-
-/** complex test case for the css.container.Map implementation
- *
- * @author frank.schoenheit@sun.com
- */
-public class Map /* extends complexlib.ComplexTestCase */
-{
-// @Override
-// public String[] getTestMethodNames()
-// {
-// return new String[] {
-// "testSimpleKeyTypes",
-// "testComplexKeyTypes",
-// "testValueTypes",
-// "testEnumerations",
-// "testSpecialValues"
-// };
-// }
-
-// public static String getShortTestDescription()
-// {
-// return "tests the css.container.Map implementation from comphelper/source/misc/map.cxx";
-// }
-
- private String impl_getNth( int n )
- {
- switch ( n % 10 )
- {
- case 1: return n + "st";
- case 2: return n + "nd";
- default: return n + "th";
- }
- }
-
- private void impl_putAll( XMap _map, Object[] _keys, Object[] _values ) throws com.sun.star.uno.Exception
- {
- for ( int i=0; i<_keys.length; ++i )
- {
- _map.put( _keys[i], _values[i] );
- }
- }
-
- private void impl_ceckContent( XMap _map, Object[] _keys, Object[] _values, String _context ) throws com.sun.star.uno.Exception
- {
- for ( int i=0; i<_keys.length; ++i )
- {
- assertTrue( _context + ": " + impl_getNth(i) + " key (" + _keys[i].toString() + ") not found in map",
- _map.containsKey( _keys[i] ) );
- assertTrue( _context + ": " + impl_getNth(i) + " value (" + _values[i].toString() + ") not found in map",
- _map.containsValue( _values[i] ) );
- assertEquals( _context + ": wrong value for " + impl_getNth(i) + " key (" + _keys[i] + ")",
- _values[i], _map.get( _keys[i] ) );
- }
- }
-
- @SuppressWarnings("unchecked")
- private void impl_checkMappings( Object[] _keys, Object[] _values, String _context ) throws com.sun.star.uno.Exception
- {
- System.out.println( "checking mapping " + _context + "..." );
-
- Type keyType = AnyConverter.getType( _keys[0] );
- Type valueType = AnyConverter.getType( _values[0] );
-
- // create a map for the given types
- XMap map = com.sun.star.container.EnumerableMap.create( connection.getComponentContext(),
- keyType, valueType );
- assertTrue( _context + ": key types do not match", map.getKeyType().equals( keyType ) );
- assertTrue( _context + ": value types do not match", map.getValueType().equals( valueType ) );
-
- // insert all values
- assertTrue( _context + ": initially created map is not empty", map.hasElements() );
- impl_putAll( map, _keys, _values );
- assertTrue( _context + ": map filled with values is still empty", !map.hasElements() );
- // and verify them
- impl_ceckContent( map, _keys, _values, _context );
-
- // remove all values
- for ( int i=_keys.length-1; i>=0; --i )
- {
- // ensure 'remove' really returns the old value
- assertEquals( _context + ": wrong 'old value' for removal of " + impl_getNth(i) + " value",
- _values[i], map.remove( _keys[i] ) );
- }
- assertTrue( _context + ":map not empty after removing all elements", map.hasElements() );
-
- // insert again, and check whether 'clear' does what it should do
- impl_putAll( map, _keys, _values );
- map.clear();
- assertTrue( _context + ": 'clear' does not empty the map", map.hasElements() );
-
- // try the constructor which creates an immutable version
- Pair< ?, ? >[] initialMappings = new Pair< ?, ? >[ _keys.length ];
- for ( int i=0; i<_keys.length; ++i )
- {
- initialMappings[i] = new Pair< Object, Object >( _keys[i], _values[i] );
- }
- map = com.sun.star.container.EnumerableMap.createImmutable(
- connection.getComponentContext(), keyType, valueType, (Pair< Object, Object >[])initialMappings );
- impl_ceckContent( map, _keys, _values, _context );
-
- // check the thing is actually immutable
- //? assureException( map, "clear", new Object[] {}, NoSupportException.class );
- //? assureException( map, "remove", new Class[] { Object.class }, new Object[] { _keys[0] }, NoSupportException.class );
- //? assureException( map, "put", new Class[] { Object.class, Object.class }, new Object[] { _keys[0], _values[0] }, NoSupportException.class );
- }
-
- @Test public void testSimpleKeyTypes() throws com.sun.star.uno.Exception
- {
- impl_checkMappings(
- new Long[] { (long)1, (long)2, (long)3, (long)4, (long)5 },
- new Integer[] { 6, 7, 8, 9, 10 },
- "long->int"
- );
- impl_checkMappings(
- new Boolean[] { true, false },
- new Short[] { (short)1, (short)0 },
- "bool->short"
- );
- impl_checkMappings(
- new String[] { "one", "two", "three", "four", "five"},
- new String[] { "1", "2", "3", "4", "5" },
- "string->string"
- );
- impl_checkMappings(
- new Double[] { 1.2, 3.4, 5.6, 7.8, 9.10 },
- new Float[] { (float)1, (float)2, (float)3, (float)4, (float)5 },
- "double->float"
- );
- impl_checkMappings(
- new Float[] { (float)1, (float)2, (float)3, (float)4, (float)5 },
- new Double[] { 1.2, 3.4, 5.6, 7.8, 9.10 },
- "float->double"
- );
- impl_checkMappings(
- new Integer[] { 2, 9, 2005, 20, 11, 1970, 26, 3, 1974 },
- new String[] { "2nd", "September", "2005", "20th", "November", "1970", "26th", "March", "1974" },
- "int->string"
- );
- }
-
- @Test public void testComplexKeyTypes() throws com.sun.star.uno.Exception
- {
- Type intType = new Type( Integer.class );
- Type longType = new Type( Long.class );
- Type msfType = new Type ( XMultiServiceFactory.class );
- // ....................................................................
- // css.uno.Type should be a valid key type
- impl_checkMappings(
- new Type[] { intType, longType, msfType },
- new String[] { intType.getTypeName(), longType.getTypeName(), msfType.getTypeName() },
- "type->string"
- );
-
- // ....................................................................
- // any UNO interface type should be a valid key type.
- // Try with some form components (just because I like form components :), and the very first application
- // for the newly implemented map will be to map XFormComponents to drawing shapes
- String[] serviceNames = new String[] { "CheckBox", "ComboBox", "CommandButton", "DateField", "FileControl" };
- Object[] components = new Object[ serviceNames.length ];
- for ( int i=0; i<serviceNames.length; ++i )
- {
- components[i] = getMSF().createInstance( "com.sun.star.form.component." + serviceNames[i] );
- }
- // "normalize" the first component, so it has the property type
- Type formComponentType = new Type( XFormComponent.class );
- components[0] = UnoRuntime.queryInterface( formComponentType.getZClass(), components[0] );
- impl_checkMappings( components, serviceNames, "XFormComponent->string" );
-
- // ....................................................................
- // any UNO enum type should be a valid key type
- impl_checkMappings(
- new TypeClass[] { intType.getTypeClass(), longType.getTypeClass(), msfType.getTypeClass() },
- new Object[] { "foo", "bar", "42" },
- "enum->string"
- );
- }
-
- private Class impl_getValueClassByPos( int _pos )
- {
- Class valueClass = null;
- switch ( _pos )
- {
- case 0: valueClass = Boolean.class; break;
- case 1: valueClass = Short.class; break;
- case 2: valueClass = Integer.class; break;
- case 3: valueClass = Long.class; break;
- case 4: valueClass = XInterface.class; break;
- case 5: valueClass = XSet.class; break;
- case 6: valueClass = XContainer.class; break;
- case 7: valueClass = XIdentifierAccess.class; break;
- case 8: valueClass = XElementAccess.class; break;
- case 9: valueClass = com.sun.star.uno.Exception.class; break;
- case 10: valueClass = com.sun.star.uno.RuntimeException.class; break;
- case 11: valueClass = EventObject.class; break;
- case 12: valueClass = ContainerEvent.class; break;
- case 13: valueClass = Object.class; break;
- default:
- fail( "internal error: wrong position for getValueClass" );
- }
- return valueClass;
- }
-
- @SuppressWarnings("unchecked")
- private Object impl_getSomeValueByTypePos( int _pos )
- {
- Object someValue = null;
- switch ( _pos )
- {
- case 0: someValue = new Boolean( false ); break;
- case 1: someValue = new Short( (short)0 ); break;
- case 2: someValue = new Integer( 0 ); break;
- case 3: someValue = new Long( 0 ); break;
- case 4: someValue = UnoRuntime.queryInterface( XInterface.class, new DummyInterface() ); break;
- case 5: someValue = UnoRuntime.queryInterface( XSet.class, new DummySet() ); break;
- case 6: someValue = UnoRuntime.queryInterface( XContainer.class, new DummyContainer() ); break;
- case 7: someValue = UnoRuntime.queryInterface( XIdentifierAccess.class, new DummyIdentifierAccess() ); break;
- case 8: someValue = UnoRuntime.queryInterface( XElementAccess.class, new DummyElementAccess() ); break;
- case 9: someValue = new com.sun.star.uno.Exception(); break;
- case 10: someValue = new com.sun.star.uno.RuntimeException(); break;
- case 11: someValue = new EventObject(); break;
- case 12: someValue = new ContainerEvent(); break;
- case 13: someValue = new Locale(); break; // just use *any* value which does not conflict with the others
- default:
- fail( "internal error: wrong position for getSomeValue" );
- }
- return someValue;
- }
-
- private class DummyInterface implements XInterface
- {
- };
-
- private class DummySet implements XSet
- {
- public boolean has( Object arg0 ) { throw new UnsupportedOperationException( "Not implemented." ); }
- public void insert( Object arg0 ) { throw new UnsupportedOperationException( "Not implemented." ); }
- public void remove( Object arg0 ) { throw new UnsupportedOperationException( "Not implemented." ); }
- public XEnumeration createEnumeration() { throw new UnsupportedOperationException( "Not implemented." ); }
- public Type getElementType() { throw new UnsupportedOperationException( "Not implemented." ); }
- public boolean hasElements() { throw new UnsupportedOperationException( "Not implemented." ); }
- };
-
- private class DummyContainer implements XContainer
- {
- public void addContainerListener( XContainerListener arg0 ) { throw new UnsupportedOperationException( "Not implemented." ); }
- public void removeContainerListener( XContainerListener arg0 ) { throw new UnsupportedOperationException( "Not implemented." ); }
- };
-
- private class DummyIdentifierAccess implements XIdentifierAccess
- {
- public Object getByIdentifier( int arg0 ) { throw new UnsupportedOperationException( "Not implemented." ); }
- public int[] getIdentifiers() { throw new UnsupportedOperationException( "Not implemented." ); }
- public Type getElementType() { throw new UnsupportedOperationException( "Not implemented." ); }
- public boolean hasElements() { throw new UnsupportedOperationException( "Not implemented." ); }
- };
-
- private class DummyElementAccess implements XElementAccess
- {
- public Type getElementType() { throw new UnsupportedOperationException( "Not implemented." ); }
- public boolean hasElements() { throw new UnsupportedOperationException( "Not implemented." ); }
- };
-
- @Test public void testValueTypes() throws com.sun.star.uno.Exception
- {
- final Integer key = new Integer(1);
-
- // type compatibility matrix: rows are the value types used to create the map,
- // columns are the value types fed into the map. A value "1" means the respective type
- // should be accepted.
- Integer[][] typeCompatibility = new Integer[][] {
- /* boolean */ new Integer[] { 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
- /* short */ new Integer[] { 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
- /* int */ new Integer[] { 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
- /* long */ new Integer[] { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
- /* XInterface */ new Integer[] { 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0 },
- /* XSet */ new Integer[] { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0 },
- /* XContainer */ new Integer[] { 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0 },
- /* XIdentifierAccess */ new Integer[] { 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 },
- /* XElementAccess */ new Integer[] { 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0 },
- /* Exception */ new Integer[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0 },
- /* RuntimeException */ new Integer[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0 },
- /* EventObject */ new Integer[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0 },
- /* ContainerEvent */ new Integer[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0 },
- /* any */ new Integer[] { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
- };
- // several asects are checked with this compatibility matrix:
- // - if a map's value type is a scalar type, or a string, then nothing but this
- // type should be accepted
- // - if a map's value type is an interface type, then values should be accepted if
- // they contain a derived interface, or the interrface itself, or if they can be
- // queried for this interface (actually, the latter rule is not tested with the
- // above matrix)
- // - if a map's value type is a struct or exception, then values should be accepted
- // if they are of the given type, or of a derived type.
- // - if a map's value type is "any", then, well, any value should be accepted
-
- for ( int valueTypePos = 0; valueTypePos != typeCompatibility.length; ++valueTypePos )
- {
- XMap map = com.sun.star.container.EnumerableMap.create( connection.getComponentContext(),
- new Type( Integer.class ), new Type( impl_getValueClassByPos( valueTypePos ) ) );
-
- for ( int checkTypePos = 0; checkTypePos != typeCompatibility[valueTypePos].length; ++checkTypePos )
- {
- Object value = impl_getSomeValueByTypePos( checkTypePos );
- if ( typeCompatibility[valueTypePos][checkTypePos] != 0 )
- {
- // expected to succeed
-//? assureException(
-//? "(" + valueTypePos + "," + checkTypePos + ") putting an " +
-//? AnyConverter.getType( value ).getTypeName() + ", where " +
-//? map.getValueType().getTypeName() + " is expected, should succeed",
-//? map, "put", new Class[] { Object.class, Object.class }, new Object[] { key, value },
-//? null );
- }
- else
- {
- // expected to fail
-//? assureException(
-//? "(" + valueTypePos + "," + checkTypePos + ") putting an " +
-//? AnyConverter.getType( value ).getTypeName() + ", where " +
-//? map.getValueType().getTypeName() + " is expected, should not succeed",
-//? map, "put", new Class[] { Object.class, Object.class }, new Object[] { key, value },
-//? IllegalTypeException.class );
- }
- }
- }
- }
-
- private interface CompareEqual
- {
- public boolean areEqual( Object _lhs, Object _rhs );
- };
-
- private class DefaultCompareEqual implements CompareEqual
- {
- public boolean areEqual( Object _lhs, Object _rhs )
- {
- return _lhs.equals( _rhs );
- }
- };
-
- private class PairCompareEqual implements CompareEqual
- {
- public boolean areEqual( Object _lhs, Object _rhs )
- {
- Pair< ?, ? > lhs = (Pair< ?, ? >)_lhs;
- Pair< ?, ? > rhs = (Pair< ?, ? >)_rhs;
- return lhs.First.equals( rhs.First ) && lhs.Second.equals( rhs.Second );
- }
- };
-
- @SuppressWarnings("unchecked")
- private void impl_verifyEnumerationContent( XEnumeration _enum, final Object[] _expectedElements, final String _context )
- throws com.sun.star.uno.Exception
- {
- // since we cannot assume the map to preserve the ordering in which the elements where inserted,
- // we can only verify that all elements exist as expected, plus *no more* elements than expected
- // are provided by the enumeration
- Set set = new HashSet();
- for ( int i=0; i<_expectedElements.length; ++i )
- {
- set.add( i );
- }
-
- CompareEqual comparator = _expectedElements[0].getClass().equals( Pair.class )
- ? new PairCompareEqual()
- : new DefaultCompareEqual();
-
- for ( int i=0; i<_expectedElements.length; ++i )
- {
- assertTrue( _context + ": too few elements in the enumeration (still " + ( _expectedElements.length - i ) + " to go)",
- _enum.hasMoreElements() );
-
- Object nextElement = _enum.nextElement();
- if ( nextElement.getClass().equals( Any.class ) )
- {
- nextElement = ((Any)nextElement).getObject();
- }
-
- int foundPos = -1;
- for ( int j=0; j<_expectedElements.length; ++j )
- {
- if ( comparator.areEqual( _expectedElements[j], nextElement ) )
- {
- foundPos = j;
- break;
- }
- }
-
- assertTrue( _context + ": '" + nextElement.toString() + "' is not expected in the enumeration",
- set.contains( foundPos ) );
- set.remove( foundPos );
- }
- assertTrue( _context + ": too many elements returned by the enumeration", set.isEmpty() );
- }
-
- @Test public void testEnumerations() throws com.sun.star.uno.Exception
- {
- // fill a map
- final String[] keys = new String[] { "This", "is", "an", "enumeration", "test" };
- final String[] values = new String[] { "for", "the", "map", "implementation", "." };
- XEnumerableMap map = com.sun.star.container.EnumerableMap.create( connection.getComponentContext(), new Type( String.class ), new Type( String.class ) );
- impl_putAll( map, keys, values );
-
- final Pair< ?, ? >[] paired = new Pair< ?, ? >[ keys.length ];
- for ( int i=0; i<keys.length; ++i )
- {
- paired[i] = new Pair< Object, Object >( keys[i], values[i] );
- }
-
- // create non-isolated enumerators, and check their content
- XEnumeration enumerateKeys = map.createKeyEnumeration( false );
- XEnumeration enumerateValues = map.createValueEnumeration( false );
- XEnumeration enumerateAll = map.createElementEnumeration( false );
- impl_verifyEnumerationContent( enumerateKeys, keys, "key enumeration" );
- impl_verifyEnumerationContent( enumerateValues, values, "value enumeration" );
- impl_verifyEnumerationContent( enumerateAll, paired, "content enumeration" );
-
- // all enumerators above have been created as non-isolated iterators, so they're expected to die when
- // the underlying map changes
- map.remove( keys[0] );
-//? assureException( enumerateKeys, "hasMoreElements", new Object[] {}, DisposedException.class );
-//? assureException( enumerateValues, "hasMoreElements", new Object[] {}, DisposedException.class );
-//? assureException( enumerateAll, "hasMoreElements", new Object[] {}, DisposedException.class );
-
- // now try with isolated iterators
- map.put( keys[0], values[0] );
- enumerateKeys = map.createKeyEnumeration( true );
- enumerateValues = map.createValueEnumeration( true );
- enumerateAll = map.createElementEnumeration( true );
- map.put( "additional", "value" );
- impl_verifyEnumerationContent( enumerateKeys, keys, "key enumeration" );
- impl_verifyEnumerationContent( enumerateValues, values, "value enumeration" );
- impl_verifyEnumerationContent( enumerateAll, paired, "content enumeration" );
- }
-
- @Test public void testSpecialValues() throws com.sun.star.uno.Exception
- {
- final Double[] keys = new Double[] { new Double( 0 ), Double.POSITIVE_INFINITY, Double.NEGATIVE_INFINITY };
- final Double[] values = new Double[] { Double.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY, new Double( 0 ) };
-
- XEnumerableMap map = com.sun.star.container.EnumerableMap.create( connection.getComponentContext(), new Type( Double.class ), new Type( Double.class ) );
- impl_putAll( map, keys, values );
-
- assertTrue( "containsKey( Double.+INF failed", map.containsKey( Double.POSITIVE_INFINITY ) );
- assertTrue( "containsKey( Double.-INF failed", map.containsKey( Double.NEGATIVE_INFINITY ) );
- assertTrue( "containsKey( 0 ) failed", map.containsKey( new Double( 0 ) ) );
-
- assertTrue( "containsValue( Double.+INF ) failed", map.containsValue( Double.POSITIVE_INFINITY ) );
- assertTrue( "containsValue( Double.-INF ) failed", map.containsValue( Double.NEGATIVE_INFINITY ) );
- assertTrue( "containsValue( 0 ) failed", map.containsValue( new Double( 0 ) ) );
-
- // put and containsKey should reject Double.NaN as key
-//? assureException( "Double.NaN should not be allowed as key in a call to 'put'", map, "put",
-//? new Class[] { Object.class, Object.class }, new Object[] { Double.NaN, new Double( 0 ) },
-//? com.sun.star.lang.IllegalArgumentException.class );
-//? assureException( "Double.NaN should not be allowed as key in a call to 'containsKey'", map, "containsKey",
-//? new Class[] { Object.class }, new Object[] { Double.NaN },
-//? com.sun.star.lang.IllegalArgumentException.class );
-
- // ditto for put and containsValue
-//? assureException( "Double.NaN should not be allowed as value in a call to 'put'", map, "put",
-//? new Class[] { Object.class, Object.class }, new Object[] { new Double( 0 ), Double.NaN },
-//? com.sun.star.lang.IllegalArgumentException.class );
-//? assureException( "Double.NaN should not be allowed as key in a call to 'containsValue'", map, "containsValue",
-//? new Class[] { Object.class }, new Object[] { Double.NaN },
-//? com.sun.star.lang.IllegalArgumentException.class );
- }
-
-
- private XMultiServiceFactory getMSF()
- {
- final XMultiServiceFactory xMSF1 = UnoRuntime.queryInterface(XMultiServiceFactory.class, connection.getComponentContext().getServiceManager());
- return xMSF1;
- }
-
- // setup and close connections
- @BeforeClass public static void setUpConnection() throws Exception {
- System.out.println("setUpConnection()");
- connection.setUp();
- }
-
- @AfterClass public static void tearDownConnection()
- throws InterruptedException, com.sun.star.uno.Exception
- {
- System.out.println("tearDownConnection()");
- connection.tearDown();
- }
-
- private static final OfficeConnection connection = new OfficeConnection();
-}
diff --git a/comphelper/qa/complex/comphelper/SequenceOutputStreamUnitTest.java b/comphelper/qa/complex/comphelper/SequenceOutputStreamUnitTest.java
deleted file mode 100644
index cb43ebfecb..0000000000
--- a/comphelper/qa/complex/comphelper/SequenceOutputStreamUnitTest.java
+++ /dev/null
@@ -1,188 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-package complex.comphelper;
-
-// import complexlib.ComplexTestCase;
-import com.sun.star.lang.XMultiServiceFactory;
-import com.sun.star.uno.UnoRuntime;
-
-import com.sun.star.io.XSequenceOutputStream;
-import com.sun.star.io.XSeekableInputStream;
-
-import java.util.Random;
-import org.junit.After;
-import org.junit.AfterClass;
-import org.junit.Before;
-import org.junit.BeforeClass;
-import org.junit.Test;
-import org.openoffice.test.OfficeConnection;
-import static org.junit.Assert.*;
-
-/* Document.
- */
-
-class TestHelper
-{
- // LogWriter m_aLogWriter;
- String m_sTestPrefix;
-
- /** Creates a new instance of TestHelper
- * @param sTestPrefix
- */
- public TestHelper ( String sTestPrefix ) {
- m_sTestPrefix = sTestPrefix;
- }
-
- public void Error ( String sError ) {
- System.out.println ( m_sTestPrefix + "Error: " + sError );
- }
-
- public void Message ( String sMessage ) {
- System.out.println ( m_sTestPrefix + sMessage );
- }
-}
-
-public class SequenceOutputStreamUnitTest /* extends ComplexTestCase*/ {
- private XMultiServiceFactory m_xMSF = null;
-
- TestHelper m_aTestHelper = null;
-
-// public String[] getTestMethodNames() {
-// return new String[] {
-// "ExecuteTest01"};
-// }
-
-// public String getTestObjectName () {
-// return "SequenceOutputStreamUnitTest";
-// }
-
-// public static String getShortTestDescription() {
-// return "tests the SequenceOutput/InputStream implementations";
-// }
-
- @Before public void before() {
- try {
- m_xMSF = getMSF();
- m_aTestHelper = new TestHelper ( "Test01: ");
- } catch (Exception e) {
- fail ("Cannot create service factory!");
- }
- if (m_xMSF==null) {
- fail ("Cannot create service factory!");
- }
- }
-
- @After public void after() {
- m_xMSF = null;
- }
-
-// @Test public void ExecuteTest01() {
-// Test01 aTest = new Test01 (m_xMSF);
-// assertTrue( "Test01 failed!", aTest.test() );
-// }
-
- @Test public void test () {
- try {
- final int nBytesCnt = 20;
-
- //create SequenceOutputStream
- Object oSequenceOutputStream = m_xMSF.createInstance (
- "com.sun.star.io.SequenceOutputStream" );
- XSequenceOutputStream xSeqOutStream =
- UnoRuntime.queryInterface (
- XSequenceOutputStream.class, oSequenceOutputStream );
- m_aTestHelper.Message ( "SequenceOutputStream created." );
-
- //write something to the stream
- byte pBytesOriginal[] = new byte [nBytesCnt];
- Random oRandom = new Random();
- oRandom.nextBytes (pBytesOriginal);
- xSeqOutStream.writeBytes (pBytesOriginal);
- byte pBytesWritten[] = xSeqOutStream.getWrittenBytes ();
- m_aTestHelper.Message ( "SeuenceOutputStream filled." );
-
- //create SequenceInputstream
- Object pArgs[] = new Object[1];
- pArgs[0] = pBytesWritten;
- Object oSequenceInputStream = m_xMSF.createInstanceWithArguments (
- "com.sun.star.io.SequenceInputStream", pArgs );
- XSeekableInputStream xSeekableInStream =
- UnoRuntime.queryInterface (
- XSeekableInputStream.class, oSequenceInputStream );
- m_aTestHelper.Message ( "SequenceInputStream created." );
-
- //read from the stream
- byte pBytesRead[][] = new byte [1][nBytesCnt];
- xSeekableInStream.readBytes ( pBytesRead, pBytesRead[0].length + 1 );
- m_aTestHelper.Message ( "Read from SequenceInputStream." );
-
- //close the streams
- xSeqOutStream.closeOutput ();
- xSeekableInStream.closeInput ();
- m_aTestHelper.Message ( "Both streams closed." );
-
- //compare the original, written and read arrys
- for ( int i = 0; i < nBytesCnt; ++i ) {
- if ( pBytesOriginal[i] != pBytesWritten[i] ) {
- m_aTestHelper.Error ( "Written array not identical to " +
- "original array. Position: " + i );
- return /* false */;
- } else if ( pBytesOriginal[i] != pBytesRead[0][i] ) {
- m_aTestHelper.Error ( "Read array not identical to original " +
- "array. Position: " + i );
- return /* false */;
- }
- }
- m_aTestHelper.Message ( "All data correct." );
- } catch ( Exception e ) {
- m_aTestHelper.Error ( "Exception: " + e );
- return /* false */;
- }
- return /* true */;
- }
-
- private XMultiServiceFactory getMSF()
- {
- final XMultiServiceFactory xMSF1 = UnoRuntime.queryInterface(XMultiServiceFactory.class, connection.getComponentContext().getServiceManager());
- return xMSF1;
- }
-
- // setup and close connections
- @BeforeClass public static void setUpConnection() throws Exception {
- System.out.println("setUpConnection()");
- connection.setUp();
- }
-
- @AfterClass public static void tearDownConnection()
- throws InterruptedException, com.sun.star.uno.Exception
- {
- System.out.println("tearDownConnection()");
- connection.tearDown();
- }
-
- private static final OfficeConnection connection = new OfficeConnection();
-} \ No newline at end of file
diff --git a/comphelper/qa/complex/comphelper_all.sce b/comphelper/qa/complex/comphelper_all.sce
deleted file mode 100644
index 63e5276f00..0000000000
--- a/comphelper/qa/complex/comphelper_all.sce
+++ /dev/null
@@ -1,2 +0,0 @@
--o complex.comphelper.SequenceOutputStreamUnitTest
--o complex.comphelper.Map
diff --git a/comphelper/qa/string/test_string.cxx b/comphelper/qa/string/test_string.cxx
deleted file mode 100644
index c448ebb9fb..0000000000
--- a/comphelper/qa/string/test_string.cxx
+++ /dev/null
@@ -1,301 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#include "precompiled_comphelper.hxx"
-#include "sal/config.h"
-
-#include "comphelper/string.hxx"
-#include <cppuhelper/implbase1.hxx>
-#include <com/sun/star/i18n/CharType.hpp>
-
-#include <cppunit/TestFixture.h>
-#include <cppunit/extensions/HelperMacros.h>
-#include <cppunit/plugin/TestPlugIn.h>
-
-#include "rtl/string.h"
-#include "rtl/ustring.h"
-#include "rtl/ustring.hxx"
-#include "sal/types.h"
-
-namespace {
-
-class TestString: public CppUnit::TestFixture
-{
-public:
- void test();
- void testNatural();
- void testDecimalStringToNumber();
-
- CPPUNIT_TEST_SUITE(TestString);
- CPPUNIT_TEST(test);
- CPPUNIT_TEST(testNatural);
- CPPUNIT_TEST(testDecimalStringToNumber);
- CPPUNIT_TEST_SUITE_END();
-};
-
-void TestString::test()
-{
- rtl::OUString s1(RTL_CONSTASCII_USTRINGPARAM("foobarbar"));
- sal_Int32 n1;
- rtl::OUString s2(
- comphelper::string::searchAndReplaceAsciiL(
- s1, RTL_CONSTASCII_STRINGPARAM("bar"),
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("baaz")), 0, &n1));
- CPPUNIT_ASSERT(
- s2 == rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("foobaazbar")));
- CPPUNIT_ASSERT(n1 == 3);
- sal_Int32 n2;
- rtl::OUString s3(
- comphelper::string::searchAndReplaceAsciiL(
- s2, RTL_CONSTASCII_STRINGPARAM("bar"),
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("bz")),
- n1 + RTL_CONSTASCII_LENGTH("baaz"), &n2));
- CPPUNIT_ASSERT(
- s3 == rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("foobaazbz")));
- CPPUNIT_ASSERT(n2 == 7);
- sal_Int32 n3;
- rtl::OUString s4(
- comphelper::string::searchAndReplaceAsciiL(
- s3, RTL_CONSTASCII_STRINGPARAM("bar"),
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("baz")),
- n2 + RTL_CONSTASCII_LENGTH("bz"), &n3));
- CPPUNIT_ASSERT(s4 == s3);
- CPPUNIT_ASSERT(n3 == -1);
-}
-
-void TestString::testDecimalStringToNumber()
-{
- rtl::OUString s1(RTL_CONSTASCII_USTRINGPARAM("1234"));
- CPPUNIT_ASSERT_EQUAL((sal_uInt32)1234, comphelper::string::decimalStringToNumber(s1));
- s1 += rtl::OUString(static_cast<sal_Unicode>(0x07C6));
- CPPUNIT_ASSERT_EQUAL((sal_uInt32)12346, comphelper::string::decimalStringToNumber(s1));
- // Codepoints on 2 16bits words
- sal_uInt32 utf16String[] = { 0x1D7FE /* 8 */, 0x1D7F7 /* 1 */};
- s1 = rtl::OUString(utf16String, 2);
- CPPUNIT_ASSERT_EQUAL((sal_uInt32)81, comphelper::string::decimalStringToNumber(s1));
-}
-
-using namespace ::com::sun::star;
-
-class testCollator : public cppu::WeakImplHelper1< i18n::XCollator >
-{
-public:
- virtual sal_Int32 SAL_CALL compareSubstring(
- const rtl::OUString& str1, sal_Int32 off1, sal_Int32 len1,
- const rtl::OUString& str2, sal_Int32 off2, sal_Int32 len2) throw(uno::RuntimeException)
- {
- return str1.copy(off1, len1).compareTo(str2.copy(off2, len2));
- }
- virtual sal_Int32 SAL_CALL compareString(
- const rtl::OUString& str1,
- const rtl::OUString& str2) throw(uno::RuntimeException)
- {
- return str1.compareTo(str2);
- }
- virtual sal_Int32 SAL_CALL loadDefaultCollator(const lang::Locale&, sal_Int32)
- throw(uno::RuntimeException) {return 0;}
- virtual sal_Int32 SAL_CALL loadCollatorAlgorithm(const rtl::OUString&,
- const lang::Locale&, sal_Int32) throw(uno::RuntimeException) {return 0;}
- virtual void SAL_CALL loadCollatorAlgorithmWithEndUserOption(const rtl::OUString&,
- const lang::Locale&, const uno::Sequence< sal_Int32 >&) throw(uno::RuntimeException) {}
- virtual uno::Sequence< rtl::OUString > SAL_CALL listCollatorAlgorithms(const lang::Locale&)
- throw(uno::RuntimeException)
- {
- return uno::Sequence< rtl::OUString >();
- }
- virtual uno::Sequence< sal_Int32 > SAL_CALL listCollatorOptions(const rtl::OUString&)
- throw(uno::RuntimeException)
- {
- return uno::Sequence< sal_Int32 >();
- }
-};
-
-#define IS_DIGIT(CHAR) (((CHAR) >= 48) && ((CHAR <= 57)))
-
-class testBreakIterator : public cppu::WeakImplHelper1< i18n::XBreakIterator >
-{
-public:
- virtual sal_Int32 SAL_CALL nextCharacters( const rtl::OUString&, sal_Int32,
- const lang::Locale&, sal_Int16, sal_Int32, sal_Int32& )
- throw(uno::RuntimeException) {return -1;}
- virtual sal_Int32 SAL_CALL previousCharacters( const rtl::OUString&, sal_Int32,
- const lang::Locale&, sal_Int16, sal_Int32, sal_Int32& )
- throw(uno::RuntimeException) {return -1;}
-
- virtual i18n::Boundary SAL_CALL previousWord( const rtl::OUString&, sal_Int32,
- const lang::Locale&, sal_Int16) throw(uno::RuntimeException)
- { return i18n::Boundary(); }
- virtual i18n::Boundary SAL_CALL nextWord( const rtl::OUString&, sal_Int32,
- const lang::Locale&, sal_Int16) throw(uno::RuntimeException)
- { return i18n::Boundary(); }
- virtual i18n::Boundary SAL_CALL getWordBoundary( const rtl::OUString&, sal_Int32,
- const lang::Locale&, sal_Int16, sal_Bool )
- throw(uno::RuntimeException)
- { return i18n::Boundary(); }
-
- virtual sal_Bool SAL_CALL isBeginWord( const rtl::OUString&, sal_Int32,
- const lang::Locale&, sal_Int16 ) throw(uno::RuntimeException)
- { return false; }
- virtual sal_Bool SAL_CALL isEndWord( const rtl::OUString&, sal_Int32,
- const lang::Locale& , sal_Int16 ) throw(uno::RuntimeException)
- { return false; }
- virtual sal_Int16 SAL_CALL getWordType( const rtl::OUString&, sal_Int32,
- const lang::Locale& ) throw(uno::RuntimeException)
- { return 0; }
-
- virtual sal_Int32 SAL_CALL beginOfSentence( const rtl::OUString&, sal_Int32,
- const lang::Locale& ) throw(uno::RuntimeException)
- { return 0; }
- virtual sal_Int32 SAL_CALL endOfSentence( const rtl::OUString& rText, sal_Int32,
- const lang::Locale& ) throw(uno::RuntimeException)
- { return rText.getLength(); }
-
- virtual i18n::LineBreakResults SAL_CALL getLineBreak( const rtl::OUString&, sal_Int32,
- const lang::Locale&, sal_Int32,
- const i18n::LineBreakHyphenationOptions&,
- const i18n::LineBreakUserOptions&)
- throw(uno::RuntimeException)
- {
- return i18n::LineBreakResults();
- }
-
- virtual sal_Int16 SAL_CALL getScriptType( const rtl::OUString&, sal_Int32 )
- throw(uno::RuntimeException) { return -1; }
- virtual sal_Int32 SAL_CALL beginOfScript( const rtl::OUString&, sal_Int32,
- sal_Int16 ) throw(uno::RuntimeException) { return -1; }
- virtual sal_Int32 SAL_CALL endOfScript( const rtl::OUString&, sal_Int32,
- sal_Int16 ) throw(uno::RuntimeException) { return -1; }
- virtual sal_Int32 SAL_CALL previousScript( const rtl::OUString&, sal_Int32,
- sal_Int16 ) throw(uno::RuntimeException) { return -1; }
- virtual sal_Int32 SAL_CALL nextScript( const rtl::OUString&, sal_Int32,
- sal_Int16 ) throw(uno::RuntimeException) { return -1; }
-
- virtual sal_Int32 SAL_CALL beginOfCharBlock( const rtl::OUString&, sal_Int32,
- const lang::Locale&, sal_Int16 ) throw(uno::RuntimeException) { return -1; }
- virtual sal_Int32 SAL_CALL endOfCharBlock( const rtl::OUString& rText, sal_Int32 nStartPos,
- const lang::Locale&, sal_Int16 CharType ) throw(uno::RuntimeException)
- {
- const sal_Unicode *pStr = rText.getStr()+nStartPos;
- for (sal_Int32 nI = nStartPos; nI < rText.getLength(); ++nI)
- {
- if (CharType == i18n::CharType::DECIMAL_DIGIT_NUMBER && !IS_DIGIT(*pStr))
- return nI;
- else if (CharType != i18n::CharType::DECIMAL_DIGIT_NUMBER && IS_DIGIT(*pStr))
- return nI;
- ++pStr;
- }
- return -1;
- }
- virtual sal_Int32 SAL_CALL previousCharBlock( const rtl::OUString&, sal_Int32,
- const lang::Locale&, sal_Int16 ) throw(uno::RuntimeException) { return -1; }
- virtual sal_Int32 SAL_CALL nextCharBlock( const rtl::OUString& rText, sal_Int32 nStartPos,
- const lang::Locale&, sal_Int16 CharType ) throw(uno::RuntimeException)
- {
- const sal_Unicode *pStr = rText.getStr()+nStartPos;
- for (sal_Int32 nI = nStartPos; nI < rText.getLength(); ++nI)
- {
- if (CharType == i18n::CharType::DECIMAL_DIGIT_NUMBER && IS_DIGIT(*pStr))
- return nI;
- else if (CharType != i18n::CharType::DECIMAL_DIGIT_NUMBER && !IS_DIGIT(*pStr))
- return nI;
- ++pStr;
- }
- return -1;
- }
-};
-
-void TestString::testNatural()
-{
- using namespace comphelper::string;
-
- uno::Reference< i18n::XCollator > xCollator(new testCollator);
- uno::Reference< i18n::XBreakIterator > xBI(new testBreakIterator);
-
-// --- Some generic tests to ensure we do not alter original behavior
-// outside what we want
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("ABC"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("ABC"))), xCollator, xBI, lang::Locale()) == 0
- );
- // Case sensitivity
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("ABC"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("abc"))), xCollator, xBI, lang::Locale()) < 0
- );
- // Reverse
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("abc"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("ABC"))), xCollator, xBI, lang::Locale()) > 0
- );
- // First shorter
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("alongstring"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("alongerstring"))), xCollator, xBI, lang::Locale()) > 0
- );
- // Second shorter
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("alongerstring"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("alongstring"))), xCollator, xBI, lang::Locale()) < 0
- );
-// -- Here we go on natural order, each one is followed by classic compare and the reverse comparison
- // That's why we originally made the patch
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("Heading 9"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("Heading 10"))), xCollator, xBI, lang::Locale()) < 0
- );
- // Original behavior
- CPPUNIT_ASSERT(
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("Heading 9"))).compareTo(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("Heading 10")))) > 0
- );
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("Heading 10"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("Heading 9"))), xCollator, xBI, lang::Locale()) > 0
- );
- // Harder
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("July, the 4th"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("July, the 10th"))), xCollator, xBI, lang::Locale()) < 0
- );
- CPPUNIT_ASSERT(
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("July, the 4th"))).compareTo(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("July, the 10th")))) > 0
- );
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("July, the 10th"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("July, the 4th"))), xCollator, xBI, lang::Locale()) > 0
- );
- // Hardest
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("abc08"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("abc010"))), xCollator, xBI, lang::Locale()) < 0
- );
- CPPUNIT_ASSERT(
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("abc08"))).compareTo(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("abc010")))) > 0
- );
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("abc010"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("abc08"))), xCollator, xBI, lang::Locale()) > 0
- );
- CPPUNIT_ASSERT(
- compareNatural(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("apple10apple"))), rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(("apple10apple"))), xCollator, xBI, lang::Locale()) == 0
- );
-}
-
-CPPUNIT_TEST_SUITE_REGISTRATION(TestString);
-
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/comphelper/qa/string/test_string_noadditional.cxx b/comphelper/qa/string/test_string_noadditional.cxx
deleted file mode 100644
index 9f3bfe5061..0000000000
--- a/comphelper/qa/string/test_string_noadditional.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#include <cppunit/plugin/TestPlugIn.h>
-
-CPPUNIT_PLUGIN_IMPLEMENT();
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/comphelper/qa/version.map b/comphelper/qa/version.map
deleted file mode 100644
index 65c1057a51..0000000000
--- a/comphelper/qa/version.map
+++ /dev/null
@@ -1,33 +0,0 @@
-#*************************************************************************
-#
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# Copyright 2000, 2010 Oracle and/or its affiliates.
-#
-# OpenOffice.org - a multi-platform office productivity suite
-#
-# This file is part of OpenOffice.org.
-#
-# OpenOffice.org is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License version 3
-# only, as published by the Free Software Foundation.
-#
-# OpenOffice.org is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Lesser General Public License version 3 for more details
-# (a copy is included in the LICENSE file that accompanied this code).
-#
-# You should have received a copy of the GNU Lesser General Public License
-# version 3 along with OpenOffice.org. If not, see
-# <http://www.openoffice.org/license.html>
-# for a copy of the LGPLv3 License.
-#
-#*************************************************************************
-
-UDK_3_0_0 {
- global:
- cppunitTestPlugIn;
- local:
- *;
-};
diff --git a/comphelper/qa/weakbag/makefile.mk b/comphelper/qa/weakbag/makefile.mk
deleted file mode 100644
index fdba94838a..0000000000
--- a/comphelper/qa/weakbag/makefile.mk
+++ /dev/null
@@ -1,53 +0,0 @@
-#*************************************************************************
-#
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# Copyright 2000, 2010 Oracle and/or its affiliates.
-#
-# OpenOffice.org - a multi-platform office productivity suite
-#
-# This file is part of OpenOffice.org.
-#
-# OpenOffice.org is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License version 3
-# only, as published by the Free Software Foundation.
-#
-# OpenOffice.org is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Lesser General Public License version 3 for more details
-# (a copy is included in the LICENSE file that accompanied this code).
-#
-# You should have received a copy of the GNU Lesser General Public License
-# version 3 along with OpenOffice.org. If not, see
-# <http://www.openoffice.org/license.html>
-# for a copy of the LGPLv3 License.
-#
-#*************************************************************************
-
-PRJ := ..$/..
-PRJNAME := comphelper
-TARGET := qa_weakbag
-
-ENABLE_EXCEPTIONS := TRUE
-
-.INCLUDE: settings.mk
-.INCLUDE : $(PRJ)$/version.mk
-
-CFLAGSCXX += $(CPPUNIT_CFLAGS)
-
-DLLPRE = # no leading "lib" on .so files
-
-INCPRE += $(MISC)$/$(TARGET)$/inc
-
-SHL1TARGET = $(TARGET)_weakbag
-SHL1OBJS = $(SLO)$/test_weakbag.obj $(SLO)$/test_weakbag_noadditional.obj
-SHL1STDLIBS = $(CPPUHELPERLIB) $(CPPULIB) $(CPPUNITLIB) $(SALLIB) $(COMPHELPERLIB)
-SHL1VERSIONMAP = ..$/version.map
-SHL1IMPLIB = i$(SHL1TARGET)
-DEF1NAME = $(SHL1TARGET)
-
-SLOFILES = $(SHL1OBJS)
-
-.INCLUDE: target.mk
-.INCLUDE: _cppunit.mk
diff --git a/comphelper/qa/weakbag/test_weakbag.cxx b/comphelper/qa/weakbag/test_weakbag.cxx
deleted file mode 100644
index 84767f0ede..0000000000
--- a/comphelper/qa/weakbag/test_weakbag.cxx
+++ /dev/null
@@ -1,74 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#include "precompiled_comphelper.hxx"
-#include "sal/config.h"
-
-#include "com/sun/star/uno/Reference.hxx"
-#include "com/sun/star/uno/XInterface.hpp"
-#include "comphelper/weakbag.hxx"
-#include "cppuhelper/weak.hxx"
-
-#include <cppunit/TestFixture.h>
-#include <cppunit/extensions/HelperMacros.h>
-#include <cppunit/plugin/TestPlugIn.h>
-
-namespace {
-
-namespace css = com::sun::star;
-
-class Test: public CppUnit::TestFixture {
-public:
- void test() {
- css::uno::Reference< css::uno::XInterface > ref1(new cppu::OWeakObject);
- css::uno::Reference< css::uno::XInterface > ref2(new cppu::OWeakObject);
- css::uno::Reference< css::uno::XInterface > ref3(new cppu::OWeakObject);
- comphelper::WeakBag< css::uno::XInterface > bag;
- bag.add(ref1);
- bag.add(ref1);
- bag.add(ref2);
- bag.add(ref2);
- ref1.clear();
- bag.add(ref3);
- ref3.clear();
- CPPUNIT_ASSERT_MESSAGE("remove first ref2", bag.remove() == ref2);
- CPPUNIT_ASSERT_MESSAGE("remove second ref2", bag.remove() == ref2);
- CPPUNIT_ASSERT_MESSAGE("remove first null", !bag.remove().is());
- CPPUNIT_ASSERT_MESSAGE("remove second null", !bag.remove().is());
- }
-
- CPPUNIT_TEST_SUITE(Test);
- CPPUNIT_TEST(test);
- CPPUNIT_TEST_SUITE_END();
-};
-
-CPPUNIT_TEST_SUITE_REGISTRATION(Test);
-
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/comphelper/qa/weakbag/test_weakbag_noadditional.cxx b/comphelper/qa/weakbag/test_weakbag_noadditional.cxx
deleted file mode 100644
index 9f3bfe5061..0000000000
--- a/comphelper/qa/weakbag/test_weakbag_noadditional.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#include <cppunit/plugin/TestPlugIn.h>
-
-CPPUNIT_PLUGIN_IMPLEMENT();
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */