libgit2dart/test/worktree_test.dart
2021-10-29 10:59:30 +03:00

174 lines
4.7 KiB
Dart

import 'dart:ffi';
import 'dart:io';
import 'package:libgit2dart/libgit2dart.dart';
import 'package:test/test.dart';
import 'helpers/util.dart';
void main() {
late Repository repo;
late Directory tmpDir;
final worktreeDir = Directory('${Directory.systemTemp.path}/worktree');
const worktreeName = 'worktree';
setUp(() {
if (worktreeDir.existsSync()) {
worktreeDir.deleteSync(recursive: true);
}
tmpDir = setupRepo(Directory('test/assets/testrepo/'));
repo = Repository.open(tmpDir.path);
});
tearDown(() {
repo.free();
tmpDir.deleteSync(recursive: true);
if (worktreeDir.existsSync()) {
worktreeDir.deleteSync(recursive: true);
}
});
group('Worktree', () {
test('successfully creates worktree at provided path', () {
expect(repo.worktrees, <String>[]);
final worktree = repo.createWorktree(
name: worktreeName,
path: worktreeDir.path,
);
final branches = repo.branches;
expect(repo.worktrees, [worktreeName]);
expect(branches.any((branch) => branch.name == worktreeName), true);
expect(worktree.name, worktreeName);
expect(worktree.path, contains('/worktree'));
expect(worktree.isLocked, false);
expect(worktree.toString(), contains('Worktree{'));
expect(File('${worktreeDir.path}/.git').existsSync(), true);
for (final branch in branches) {
branch.free();
}
worktree.free();
});
test(
'successfully creates worktree at provided path from '
'provided reference', () {
final head = repo.revParseSingle('HEAD');
final worktreeBranch = repo.createBranch(name: 'v1', target: head);
final ref = repo.lookupReference('refs/heads/v1');
expect(repo.worktrees, <String>[]);
final worktree = repo.createWorktree(
name: worktreeName,
path: worktreeDir.path,
ref: ref,
);
final branches = repo.branches;
expect(repo.worktrees, [worktreeName]);
expect(branches.any((branch) => branch.name == 'v1'), true);
expect(branches.any((branch) => branch.name == worktreeName), false);
expect(worktreeBranch.isCheckedOut, true);
worktreeDir.deleteSync(recursive: true);
worktree.prune();
expect(repo.worktrees, <String>[]);
expect(worktreeBranch.isCheckedOut, false);
expect(branches.any((branch) => branch.name == 'v1'), true);
for (final branch in branches) {
branch.free();
}
worktreeBranch.free();
ref.free();
head.free();
worktree.free();
});
test('throws when trying to create worktree with invalid name or path', () {
expect(
() => repo.createWorktree(
name: '',
path: worktreeDir.path,
),
throwsA(isA<LibGit2Error>()),
);
expect(
() => repo.createWorktree(
name: 'name',
path: '',
),
throwsA(isA<LibGit2Error>()),
);
});
test('successfully lookups worktree', () {
final worktree = repo.createWorktree(
name: worktreeName,
path: worktreeDir.path,
);
final lookedupWorktree = repo.lookupWorktree(worktreeName);
expect(lookedupWorktree.name, worktreeName);
expect(lookedupWorktree.path, contains('/worktree'));
expect(lookedupWorktree.isLocked, false);
lookedupWorktree.free();
worktree.free();
});
test('throws when trying to lookup and error occurs', () {
expect(
() => Worktree.lookup(repo: Repository(nullptr), name: 'name'),
throwsA(isA<LibGit2Error>()),
);
});
test('successfully locks and unlocks worktree', () {
final worktree = repo.createWorktree(
name: worktreeName,
path: worktreeDir.path,
);
expect(worktree.isLocked, false);
worktree.lock();
expect(worktree.isLocked, true);
worktree.unlock();
expect(worktree.isLocked, false);
worktree.free();
});
test('successfully prunes worktree', () {
expect(repo.worktrees, <String>[]);
final worktree = repo.createWorktree(
name: worktreeName,
path: worktreeDir.path,
);
expect(repo.worktrees, [worktreeName]);
expect(worktree.isPrunable, false);
expect(worktree.isValid, true);
worktreeDir.deleteSync(recursive: true);
expect(worktree.isPrunable, true);
expect(worktree.isValid, false);
worktree.prune();
expect(repo.worktrees, <String>[]);
worktree.free();
});
test('throws when trying get list of worktrees and error occurs', () {
expect(
() => Worktree.list(Repository(nullptr)),
throwsA(isA<LibGit2Error>()),
);
});
});
}