summaryrefslogtreecommitdiffstats
path: root/tdeio/tests/kurlcompletiontest.cpp
blob: 7d479d1562b90cc46bcb5af1c4f86c13494fdaca (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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
 *  Copyright (C) 2004 David Faure <faure@kde.org>
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Library General Public
 *  License version 2 as published by the Free Software Foundation;
 *
 *  This library 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
 *  Library General Public License for more details.
 *
 *  You should have received a copy of the GNU Library General Public License
 *  along with this library; see the file COPYING.LIB.  If not, write to
 *  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 *  Boston, MA 02110-1301, USA.
 */

#include <tdeapplication.h>
#include <kurlcompletion.h>
#include <kdebug.h>
#include <tqdir.h>
#include <assert.h>
#include <tqfile.h>
#include <ktempdir.h>
#include <tdecmdlineargs.h>
#include <unistd.h>

class KURLCompletionTest
{
public:
    KURLCompletionTest() {}
    ~KURLCompletionTest() { teardown(); }
    void setup( bool setDirAsURL );
    void teardown();
    void testLocalRelativePath();
    void testLocalAbsolutePath();
    void testLocalURL();

private:
    void waitForCompletion();
    KURLCompletion* m_completion;
    KTempDir* m_tempDir;
    KURL m_dirURL;
    TQString m_dir;
};

void KURLCompletionTest::setup( bool setDirAsURL )
{
    kdDebug() << k_funcinfo << endl;
    m_completion = new KURLCompletion;
    m_tempDir = new KTempDir;
    m_tempDir->setAutoDelete( true );
    m_dir = m_tempDir->name();
    kdDebug() << "m_dir=" << m_dir << endl;
    Q_ASSERT( m_dir.endsWith( "/" ) );
    if ( setDirAsURL ) {
        KURL d; d.setPath( m_dir );
        m_completion->setDir( d.url() );
    } else {
        m_completion->setDir( m_dir );
    }
    m_dirURL.setPath( m_dir );

    TQFile f1( m_dir + "/file1" );
    bool ok = f1.open( IO_WriteOnly );
    assert( ok );
    f1.close();

    TQFile f2( m_dir + "/file#a" );
    ok = f2.open( IO_WriteOnly );
    assert( ok );
    f2.close();
}

void KURLCompletionTest::teardown()
{
    delete m_completion;
    m_completion = 0;
    delete m_tempDir;
    m_tempDir = 0;
}
void KURLCompletionTest::waitForCompletion()
{
    while ( m_completion->isRunning() ) {
        kdDebug() << "waiting for thread..." << endl;
        usleep( 10 );
    }
}

void KURLCompletionTest::testLocalRelativePath()
{
    kdDebug() << k_funcinfo << endl;
    // Completion from relative path, with two matches
    m_completion->makeCompletion( "f" );
    waitForCompletion();
    TQStringList comp1all = m_completion->allMatches();
    assert( comp1all.count() == 2 );
    assert( comp1all.find( "file1" ) != comp1all.end() );
    assert( comp1all.find( "file#a" ) != comp1all.end() );
    TQString comp1 = m_completion->replacedPath( "file1" ); // like KURLRequester does
    assert( comp1 == "file1" );

    // Completion from relative path
    kdDebug() << endl << k_funcinfo << "now completing on 'file#'" << endl;
    m_completion->makeCompletion( "file#" );
    waitForCompletion();
    TQStringList compall = m_completion->allMatches();
    kdDebug() << compall << endl;
    assert( compall.count() == 1 );
    assert( compall.first() == "file#a" );
    TQString comp2 = m_completion->replacedPath( compall.first() ); // like KURLRequester does
    assert( comp2 == "file#a" );
}

void KURLCompletionTest::testLocalAbsolutePath()
{
    // Completion from absolute path
    kdDebug() << k_funcinfo << m_dir+"file#" << endl;
    m_completion->makeCompletion( m_dir + "file#" );
    waitForCompletion();
    TQStringList compall = m_completion->allMatches();
    kdDebug() << compall << endl;
    assert( compall.count() == 1 );
    TQString comp = compall.first();
    assert( comp == m_dir + "file#a" );
    comp = m_completion->replacedPath( comp ); // like KURLRequester does
    assert( comp == m_dir + "file#a" );
}

void KURLCompletionTest::testLocalURL()
{
    // Completion from URL
    kdDebug() << k_funcinfo << endl;
    KURL url = KURL::fromPathOrURL( m_dirURL.path() + "file" );
    m_completion->makeCompletion( url.prettyURL() );
    waitForCompletion();
    TQStringList comp1all = m_completion->allMatches();
    kdDebug() << comp1all << endl;
    assert( comp1all.count() == 2 );
    assert( comp1all.find( m_dirURL.url() + "file1" ) != comp1all.end() );
    TQString filehash = m_dirURL.url() + "file%23a";
    assert( comp1all.find( filehash ) != comp1all.end() );
    TQString filehashPath = m_completion->replacedPath( filehash ); // note that it returns a path!!
    kdDebug() << filehashPath << endl;
    assert( filehashPath == m_dirURL.path() + "file#a" );

    // Completion from URL with no match
    url = KURL::fromPathOrURL( m_dirURL.path() + "foobar" );
    kdDebug() << k_funcinfo << "makeCompletion(" << url << ")" << endl;
    TQString comp2 = m_completion->makeCompletion( url.prettyURL() );
    assert( comp2.isEmpty() );
    waitForCompletion();
    assert( m_completion->allMatches().isEmpty() );

    // Completion from URL with a ref -> no match
    url = KURL::fromPathOrURL( m_dirURL.path() + "f" );
    url.setRef( "ref" );
    kdDebug() << k_funcinfo << "makeCompletion(" << url << ")" << endl;
    m_completion->makeCompletion( url.prettyURL() );
    waitForCompletion();
    assert( m_completion->allMatches().isEmpty() );
}

int main( int argc, char **argv )
{
    TDEApplication::disableAutoDcopRegistration();
    TDECmdLineArgs::init(argc,argv,"kurlcompletiontest", 0, 0, 0, 0);
    TDEApplication app;

    {
        KURLCompletionTest test;
        test.setup( false );
        test.testLocalRelativePath();
        test.testLocalAbsolutePath();
        test.testLocalURL();
        test.teardown();

        // Try again, with another KTempDir (to check that the caching doesn't give us wrong results)
        test.setup( true );
        test.testLocalRelativePath();
        test.testLocalAbsolutePath();
        test.testLocalURL();
        test.teardown();
    }
    tqDebug( "All tests OK." );

    return 0;
}