summaryrefslogtreecommitdiff
path: root/package/qa/storages/RegressionTest_125919.java
blob: 0a13fc63758c67aa5f48eb334be129818f317db8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package complex.storages;

import java.lang.Integer;

import com.sun.star.uno.XInterface;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.lang.XSingleServiceFactory;

import com.sun.star.bridge.XUnoUrlResolver;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;
import com.sun.star.io.XStream;
import com.sun.star.io.XInputStream;

import com.sun.star.embed.*;

import share.LogWriter;
import complex.storages.TestHelper;
import complex.storages.StorageTest;
import complex.storages.BorderedStream;

public class RegressionTest_125919 implements StorageTest {

    XMultiServiceFactory m_xMSF;
    XSingleServiceFactory m_xStorageFactory;
    TestHelper m_aTestHelper;

    int nMinTestLen = 0;
    int nMaxTestLen = 60000;

    public RegressionTest_125919( XMultiServiceFactory xMSF, XSingleServiceFactory xStorageFactory, LogWriter aLogWriter )
    {
        m_xMSF = xMSF;
        m_xStorageFactory = xStorageFactory;
        m_aTestHelper = new TestHelper( aLogWriter, "RegressionTest_125919: " );
    }

    public boolean test()
    {
        try
        {
            byte[] pBytes0 = new byte[0];
            byte[] pBytes18 = new byte[18000];
            byte[] pBytes36 = new byte[36000];

            for ( int nInitInd = 0; nInitInd < 36000; nInitInd++ )
            {
                pBytes36[nInitInd] = ( new Integer( nInitInd >> ( ( nInitInd % 2 ) * 8 ) ) ).byteValue();
                if ( nInitInd < 18000 )
                    pBytes18[nInitInd] = ( new Integer( 256  - pBytes36[nInitInd] ) ).byteValue();
            }

            System.out.println( "This test can take up to some hours. The file size currently is about 50000." );
            System.out.println( "Progress: " );
            for ( int nAvailableBytes = nMinTestLen; nAvailableBytes < nMaxTestLen; nAvailableBytes++ )
            {
                Object oBStream = new BorderedStream( nAvailableBytes );
                XStream xBorderedStream = (XStream)UnoRuntime.queryInterface( XStream.class, oBStream );
                if ( xBorderedStream == null )
                {
                    m_aTestHelper.Error( "Can't create bordered stream!" );
                    return false;
                }

                // create storage based on the temporary stream
                Object pArgs[] = new Object[2];
                pArgs[0] = (Object) xBorderedStream;
                pArgs[1] = new Integer( ElementModes.WRITE );

                Object oTempStorage = m_xStorageFactory.createInstanceWithArguments( pArgs );
                XStorage xTempStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oTempStorage );
                if ( xTempStorage == null )
                {
                    m_aTestHelper.Error( "Can't create temporary storage representation!" );
                    return false;
                }

                XTransactedObject xTransact = (XTransactedObject) UnoRuntime.queryInterface( XTransactedObject.class, xTempStorage );
                if ( xTransact == null )
                {
                    m_aTestHelper.Error( "This test is designed for storages in transacted mode!" );
                    return false;
                }


                if ( !m_aTestHelper.WriteBytesToSubstream( xTempStorage, "SubStream" + 0, "MediaType1", true, pBytes0 ) )
                    return false;
                if ( !m_aTestHelper.WriteBytesToSubstream( xTempStorage, "SubStream" + 18, "MediaType2", true, pBytes18 ) )
                    return false;
                if ( !m_aTestHelper.WriteBytesToSubstream( xTempStorage, "SubStream" + 36, "MediaType3", true, pBytes36 ) )
                    return false;

                if ( nAvailableBytes > 0 && nAvailableBytes % 100 == 0 )
                    System.out.println( " " + nAvailableBytes );

                if ( nAvailableBytes > 0 && nAvailableBytes % 2 == 1 )
                    System.out.print( "#" );

                try
                {
                    xTransact.commit();

                    System.out.println( "" );
                    if ( !m_aTestHelper.disposeStorage( xTempStorage ) )
                        return false;

                    // SUCCESS
                    return true;
                }
                catch( UseBackupException aExc )
                {
                    // when there is not enough place in the target location and the target file is empty
                    // the direct writing will fail and must throw this exception with empty URL
                    if ( aExc.TemporaryFileURL.length() != 0 )
                        return false;
                }
                catch( Exception e )
                {
                    System.out.println( "" );
                    m_aTestHelper.Error( "Unexpected exception: " + e + "\nnAvailableBytes = " + nAvailableBytes );
                    return false;
                }
            }

            return false;
        }
        catch( Exception e )
        {
            m_aTestHelper.Error( "Exception: " + e );
            return false;
        }
    }
}