Adds the options `extends`, which can be defined via configuration file or CLI arguments to a single path or an array of paths of shareable configuration. A shareable configuration is a file or a module that can be loaded with `require`. Options is defined by merging in the following order of priority: - CLI/API - Configuration file - Shareable configuration (from right to left) Options set in a shareable configuration can be unset by setting it to `null` or `undefined` in the main configuration file. If a default value applies to this property it will be used.
129 lines
4.3 KiB
JavaScript
129 lines
4.3 KiB
JavaScript
import test from 'ava';
|
|
import fileUrl from 'file-url';
|
|
import {gitTagHead, gitCommitTag, isCommitInHistory, unshallow, gitHead, repoUrl} from '../lib/git';
|
|
import {
|
|
gitRepo,
|
|
gitCommits,
|
|
gitCheckout,
|
|
gitTagVersion,
|
|
gitShallowClone,
|
|
gitLog,
|
|
gitAddConfig,
|
|
} from './helpers/git-utils';
|
|
|
|
// Save the current working diretory
|
|
const cwd = process.cwd();
|
|
|
|
test.afterEach.always(() => {
|
|
// Restore the current working directory
|
|
process.chdir(cwd);
|
|
});
|
|
|
|
test.serial('Get the last commit sha', async t => {
|
|
// Create a git repository, set the current working directory at the root of the repo
|
|
await gitRepo();
|
|
// Add commits to the master branch
|
|
const commits = await gitCommits(['First']);
|
|
|
|
const result = await gitHead();
|
|
|
|
t.is(result.substring(0, 7), commits[0].hash);
|
|
});
|
|
|
|
test.serial('Throw error if the last commit sha cannot be found', async t => {
|
|
// Create a git repository, set the current working directory at the root of the repo
|
|
await gitRepo();
|
|
|
|
await t.throws(gitHead(), Error);
|
|
});
|
|
|
|
test.serial('Unshallow repository', async t => {
|
|
// Create a git repository, set the current working directory at the root of the repo
|
|
const repo = await gitRepo();
|
|
// Add commits to the master branch
|
|
await gitCommits(['First', 'Second']);
|
|
// Create a shallow clone with only 1 commit
|
|
await gitShallowClone(repo);
|
|
|
|
// Verify the shallow clone contains only one commit
|
|
t.is((await gitLog()).length, 1);
|
|
|
|
await unshallow();
|
|
|
|
// Verify the shallow clone contains all the commits
|
|
t.is((await gitLog()).length, 2);
|
|
});
|
|
|
|
test.serial('Do not throw error when unshallow a complete repository', async t => {
|
|
// Create a git repository, set the current working directory at the root of the repo
|
|
await gitRepo();
|
|
// Add commits to the master branch
|
|
await gitCommits(['First']);
|
|
await t.notThrows(unshallow());
|
|
});
|
|
|
|
test.serial('Verify if the commit `sha` is in the direct history of the current branch', async t => {
|
|
// Create a git repository, set the current working directory at the root of the repo
|
|
await gitRepo();
|
|
// Add commits to the master branch
|
|
const commits = await gitCommits(['First']);
|
|
// Create the new branch 'other-branch' from master
|
|
await gitCheckout('other-branch');
|
|
// Add commits to the 'other-branch' branch
|
|
const otherCommits = await gitCommits(['Second']);
|
|
await gitCheckout('master', false);
|
|
|
|
t.true(await isCommitInHistory(commits[0].hash));
|
|
t.false(await isCommitInHistory(otherCommits[0].hash));
|
|
});
|
|
|
|
test.serial('Get the tag associated with a commit sha or "null" if the commit does not exists', async t => {
|
|
// Create a git repository, set the current working directory at the root of the repo
|
|
await gitRepo();
|
|
// Add commits to the master branch
|
|
const commits = await gitCommits(['First']);
|
|
// Create the tag corresponding to version 1.0.0
|
|
await gitTagVersion('v1.0.0');
|
|
|
|
t.is(await gitCommitTag(commits[0].hash), 'v1.0.0');
|
|
t.falsy(await gitCommitTag('missing_sha'));
|
|
});
|
|
|
|
test.serial('Get the commit sha for a given tag or "null" if the tag does not exists', async t => {
|
|
// Create a git repository, set the current working directory at the root of the repo
|
|
await gitRepo();
|
|
// Add commits to the master branch
|
|
const commits = await gitCommits(['First']);
|
|
// Create the tag corresponding to version 1.0.0
|
|
await gitTagVersion('v1.0.0');
|
|
|
|
t.is((await gitTagHead('v1.0.0')).substring(0, 7), commits[0].hash);
|
|
t.falsy(await gitTagHead('missing_tag'));
|
|
});
|
|
|
|
test.serial('Return git remote repository url from config', async t => {
|
|
// Create a git repository, set the current working directory at the root of the repo
|
|
await gitRepo();
|
|
// Add remote.origin.url config
|
|
await gitAddConfig('remote.origin.url', 'git@hostname.com:owner/package.git');
|
|
|
|
t.is(await repoUrl(), 'git@hostname.com:owner/package.git');
|
|
});
|
|
|
|
test.serial('Return git remote repository url set while cloning', async t => {
|
|
// Create a git repository, set the current working directory at the root of the repo
|
|
const repo = await gitRepo();
|
|
await gitCommits(['First']);
|
|
// Create a clone
|
|
await gitShallowClone(repo);
|
|
|
|
t.is(await repoUrl(), fileUrl(repo));
|
|
});
|
|
|
|
test.serial('Return "undefined" if git repository url is not set', async t => {
|
|
// Create a git repository, set the current working directory at the root of the repo
|
|
await gitRepo();
|
|
|
|
t.is(await repoUrl(), undefined);
|
|
});
|