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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
|
/***************************************************************************
* This file was partly taken from KDevelop's cvs plugin *
* Copyright 2007 Robert Gruber <rgruber@users.sourceforge.net> *
* *
* Adapted for Git *
* Copyright 2008 Evgeniy Ivanov <powerfox@kde.ru> *
* *
* Adapted for Bazaar *
* Copyright 2014 Maciej Poleski *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation; either version 2 of *
* the License or (at your option) version 3 or any later version *
* accepted by the membership of KDE e.V. (or its successor approved *
* by the membership of KDE e.V.), which shall act as a proxy *
* defined in Section 14 of version 3 of the license. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
#include "test_bazaar.h"
#include <tests/testcore.h>
#include <tests/autotestshell.h>
#include <QDir>
#include <QFileInfo>
#include <QUrl>
#include <QDebug>
#include <KIO/DeleteJob>
#include <vcs/dvcs/dvcsjob.h>
#include <vcs/vcsannotation.h>
#include "../bazaarplugin.h"
#include <QTest>
#define VERIFYJOB(j) \
do { QVERIFY(j); QVERIFY(j->exec()); QVERIFY((j)->status() == KDevelop::VcsJob::JobSucceeded); } while(0)
const QString tempDir = QDir::tempPath();
const QString bazaarTest_BaseDir(tempDir + "/kdevBazaar_testdir/");
const QString bazaarTest_BaseDir2(tempDir + "/kdevBazaar_testdir2/");
const QString bazaarRepo(bazaarTest_BaseDir + ".bzr");
const QString bazaarSrcDir(bazaarTest_BaseDir + "src/");
const QString bazaarTest_FileName(QStringLiteral("testfile"));
const QString bazaarTest_FileName2(QStringLiteral("foo"));
const QString bazaarTest_FileName3(QStringLiteral("bar"));
using namespace KDevelop;
void TestBazaar::initTestCase()
{
AutoTestShell::init({QStringLiteral("kdevbazaar")});
TestCore::initialize(Core::NoUi);
m_plugin = new BazaarPlugin(TestCore::self());
}
void TestBazaar::cleanupTestCase()
{
delete m_plugin;
TestCore::shutdown();
}
void TestBazaar::init()
{
// Now create the basic directory structure
QDir tmpdir(tempDir);
tmpdir.mkdir(bazaarTest_BaseDir);
tmpdir.mkdir(bazaarSrcDir);
tmpdir.mkdir(bazaarTest_BaseDir2);
}
void TestBazaar::cleanup()
{
removeTempDirs();
}
void TestBazaar::repoInit()
{
qDebug() << "Trying to init repo";
// make job that creates the local repository
VcsJob* j = m_plugin->init(QUrl::fromLocalFile(bazaarTest_BaseDir));
VERIFYJOB(j);
//check if the .bzr directory in the new local repository exists now
QVERIFY(QFileInfo::exists(bazaarRepo));
}
void TestBazaar::addFiles()
{
qDebug() << "Adding files to the repo";
//we start it after repoInit, so we still have empty bazaar repo
QFile f(bazaarTest_BaseDir + bazaarTest_FileName);
if (f.open(QIODevice::WriteOnly)) {
QTextStream input(&f);
input << "HELLO WORLD";
}
f.close();
f.setFileName(bazaarTest_BaseDir + bazaarTest_FileName2);
if (f.open(QIODevice::WriteOnly)) {
QTextStream input(&f);
input << "No, bar()!";
}
f.close();
//test bzr-status exitCode (see DVcsJob::setExitCode).
VcsJob* j = m_plugin->status(QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir));
VERIFYJOB(j);
// /tmp/kdevBazaar_testdir/ and testfile
j = m_plugin->add(QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir + bazaarTest_FileName));
VERIFYJOB(j);
f.setFileName(bazaarSrcDir + bazaarTest_FileName3);
if (f.open(QIODevice::WriteOnly)) {
QTextStream input(&f);
input << "No, foo()! It's bar()!";
}
f.close();
//test bzr-status exitCode again
j = m_plugin->status(QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir));
VERIFYJOB(j);
//repository path without trailing slash and a file in a parent directory
// /tmp/repo and /tmp/repo/src/bar
j = m_plugin->add(QList<QUrl>() << QUrl::fromLocalFile(bazaarSrcDir + bazaarTest_FileName3));
VERIFYJOB(j);
//let's use absolute path, because it's used in ContextMenus
j = m_plugin->add(QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir + bazaarTest_FileName2));
VERIFYJOB(j);
//Now let's create several files and try "bzr add file1 file2 file3"
const QStringList files{QStringLiteral("file1"), QStringLiteral("file2"), QStringLiteral("la la")};
QList<QUrl> multipleFiles;
for (const QString& file : files) {
QFile f(bazaarTest_BaseDir + file);
QVERIFY(f.open(QIODevice::WriteOnly));
QTextStream input(&f);
input << file;
f.close();
multipleFiles << QUrl::fromLocalFile(bazaarTest_BaseDir + file);
}
j = m_plugin->add(multipleFiles);
VERIFYJOB(j);
}
void TestBazaar::prepareWhoamiInformations()
{
auto* whoamiJob = new DVcsJob(bazaarTest_BaseDir, m_plugin);
*whoamiJob<<"bzr"<<"whoami"<<"--branch"<<"kdevbazaar-test identity <>";
VERIFYJOB(whoamiJob);
}
void TestBazaar::commitFiles()
{
prepareWhoamiInformations();
qDebug() << "Committing...";
//we start it after addFiles, so we just have to commit
VcsJob* j = m_plugin->commit(QStringLiteral("Test commit"), QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir));
VERIFYJOB(j);
//test bzr-status exitCode one more time.
j = m_plugin->status(QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir));
VERIFYJOB(j);
//since we committed the file to the "pure" repository, .bzr/repository/indices should exist
//TODO: maybe other method should be used
QString headRefName(bazaarRepo + "/repository/indices");
QVERIFY(QFileInfo::exists(headRefName));
//Test the results of the "bzr add"
auto* jobLs = new DVcsJob(bazaarTest_BaseDir, m_plugin);
*jobLs << "bzr" << "ls" << "-R";
if (jobLs->exec() && jobLs->status() == KDevelop::VcsJob::JobSucceeded) {
QStringList files = jobLs->output().split('\n');
QVERIFY(files.contains(bazaarTest_FileName));
QVERIFY(files.contains(bazaarTest_FileName2));
QVERIFY(files.contains("src/" + bazaarTest_FileName3));
}
qDebug() << "Committing one more time";
//let's try to change the file and test "bzr commit"
QFile f(bazaarTest_BaseDir + bazaarTest_FileName);
if (f.open(QIODevice::WriteOnly)) {
QTextStream input(&f);
input << "Just another HELLO WORLD\n";
}
f.close();
//add changes
j = m_plugin->add(QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir + bazaarTest_FileName));
VERIFYJOB(j);
j = m_plugin->commit(QStringLiteral("KDevelop's Test commit2"), QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir));
VERIFYJOB(j);
}
void TestBazaar::testInit()
{
repoInit();
}
void TestBazaar::testAdd()
{
repoInit();
addFiles();
}
void TestBazaar::testCommit()
{
repoInit();
addFiles();
commitFiles();
}
void TestBazaar::testAnnotation()
{
repoInit();
addFiles();
commitFiles();
// called after commitFiles
QFile f(bazaarTest_BaseDir + bazaarTest_FileName);
QVERIFY(f.open(QIODevice::Append));
QTextStream input(&f);
input << "An appended line";
f.close();
VcsJob* j = m_plugin->commit(QStringLiteral("KDevelop's Test commit3"), QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir));
VERIFYJOB(j);
j = m_plugin->annotate(QUrl::fromLocalFile(bazaarTest_BaseDir + bazaarTest_FileName), VcsRevision::createSpecialRevision(VcsRevision::Head));
VERIFYJOB(j);
QList<QVariant> results = j->fetchResults().toList();
QCOMPARE(results.size(), 2);
QVERIFY(results.at(0).canConvert<VcsAnnotationLine>());
VcsAnnotationLine annotation = results.at(0).value<VcsAnnotationLine>();
QCOMPARE(annotation.lineNumber(), 0);
QCOMPARE(annotation.commitMessage(), QStringLiteral("KDevelop's Test commit2"));
QVERIFY(results.at(1).canConvert<VcsAnnotationLine>());
annotation = results.at(1).value<VcsAnnotationLine>();
QCOMPARE(annotation.lineNumber(), 1);
QCOMPARE(annotation.commitMessage(), QStringLiteral("KDevelop's Test commit3"));
}
void TestBazaar::testRemoveEmptyFolder()
{
repoInit();
QDir d(bazaarTest_BaseDir);
d.mkdir(QStringLiteral("emptydir"));
VcsJob* j = m_plugin->remove(QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir+"emptydir/"));
if (j) VERIFYJOB(j);
QVERIFY(!d.exists("emptydir"));
}
void TestBazaar::testRemoveEmptyFolderInFolder()
{
repoInit();
QDir d(bazaarTest_BaseDir);
d.mkdir(QStringLiteral("dir"));
QDir d2(bazaarTest_BaseDir+"dir");
d2.mkdir(QStringLiteral("emptydir"));
VcsJob* j = m_plugin->remove(QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir+"dir/"));
if (j) VERIFYJOB(j);
QVERIFY(!d.exists("dir"));
}
void TestBazaar::testRemoveUnindexedFile()
{
repoInit();
QFile f(bazaarTest_BaseDir + bazaarTest_FileName);
QVERIFY(f.open(QIODevice::Append));
QTextStream input(&f);
input << "An appended line";
f.close();
VcsJob* j = m_plugin->remove(QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir + bazaarTest_FileName));
if (j) VERIFYJOB(j);
QVERIFY(!QFile::exists(bazaarTest_BaseDir + bazaarTest_FileName));
}
void TestBazaar::testRemoveFolderContainingUnversionedFiles()
{
repoInit();
QDir d(bazaarTest_BaseDir);
d.mkdir(QStringLiteral("dir"));
{
QFile f(bazaarTest_BaseDir + "dir/foo");
QVERIFY(f.open(QIODevice::Append));
QTextStream input(&f);
input << "An appended line";
f.close();
}
VcsJob* j = m_plugin->add(QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir+"dir"), IBasicVersionControl::NonRecursive);
VERIFYJOB(j);
prepareWhoamiInformations();
j = m_plugin->commit(QStringLiteral("initial commit"), QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir));
VERIFYJOB(j);
{
QFile f(bazaarTest_BaseDir + "dir/bar");
QVERIFY(f.open(QIODevice::Append));
QTextStream input(&f);
input << "An appended line";
f.close();
}
j = m_plugin->remove(QList<QUrl>() << QUrl::fromLocalFile(bazaarTest_BaseDir + "dir"));
if (j) VERIFYJOB(j);
QVERIFY(!QFile::exists(bazaarTest_BaseDir + "dir"));
}
void TestBazaar::removeTempDirs()
{
if (QFileInfo::exists(bazaarTest_BaseDir))
if (!(KIO::del(QUrl::fromLocalFile(bazaarTest_BaseDir))->exec()))
qDebug() << "KIO::del(" << bazaarTest_BaseDir << ") returned false";
if (QFileInfo::exists(bazaarTest_BaseDir2))
if (!(KIO::del(QUrl::fromLocalFile(bazaarTest_BaseDir2))->exec()))
qDebug() << "KIO::del(" << bazaarTest_BaseDir2 << ") returned false";
}
QTEST_MAIN(TestBazaar)
|