From 2a882781a8a68e38e8da91bfc2b983c5b4cd62df Mon Sep 17 00:00:00 2001 From: Kamil Piechaczek Date: Sat, 15 Jun 2019 14:06:13 +0200 Subject: [PATCH 1/5] Support for standard/core branches. --- README.md | 18 +++++ lib/default-resolver.js | 4 +- lib/utils/getoptions.js | 19 ++++- lib/utils/parserepositoryurl.js | 27 ++++++- tests/utils/getoptions.js | 52 ++++++++++++- tests/utils/parserepositoryurl.js | 117 ++++++++++++++++++++++++++++++ 6 files changed, 230 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 781c569..7f775ec 100644 --- a/README.md +++ b/README.md @@ -185,6 +185,24 @@ If you need to run mgit on a CI server, then configure it to use HTTPS URLs: mgit --resolver-url-template="https://github.com/\${ path }.git" ``` +### Standard/core branches + +When you call `mgit sync` or `mgit co` it uses the `master` branch in every repository, unless the repository's branch is defined in `mgit.json`. + +If you support only the one main/core branch in your projects, it isn't a problem. But if you have more than one, on every single branch you need modify branches for dependencies in `mgit.json`. + +In order to simplify the flow, we introduced the standard/core branches option. It uses the current branch of the main repository in all cases where the branch is not defined in `mgit.json`. + +```json +{ + ... + "standardBranches": [ "master", "stable" ], + ... +} +``` + +[Read more about the feature.](https://github.com/cksource/mgit2/issues/103) + You can also use full HTTPS URLs to configure `dependencies` in your `mgit.json`. ## Commands diff --git a/lib/default-resolver.js b/lib/default-resolver.js index 06b6530..d14c01b 100644 --- a/lib/default-resolver.js +++ b/lib/default-resolver.js @@ -23,7 +23,9 @@ module.exports = function resolver( packageName, options ) { const repository = parseRepositoryUrl( repositoryUrl, { urlTemplate: options.resolverUrlTemplate, - defaultBranch: options.resolverDefaultBranch + defaultBranch: options.resolverDefaultBranch, + standardBranches: options.standardBranches, + cwdPackageBranch: options.cwdPackageBranch, } ); if ( options.overrideDirectoryNames[ packageName ] ) { diff --git a/lib/utils/getoptions.js b/lib/utils/getoptions.js index bc5114f..27a53d4 100644 --- a/lib/utils/getoptions.js +++ b/lib/utils/getoptions.js @@ -7,6 +7,7 @@ const fs = require( 'fs' ); const path = require( 'upath' ); +const shell = require( 'shelljs' ); /** * @param {Object} callOptions Call options. @@ -27,7 +28,8 @@ module.exports = function cwdResolver( callOptions, cwd ) { ignore: null, scope: null, packagesPrefix: [], - overrideDirectoryNames: {} + overrideDirectoryNames: {}, + standardBranches: [] }; if ( fs.existsSync( mgitJsonPath ) ) { @@ -38,10 +40,19 @@ module.exports = function cwdResolver( callOptions, cwd ) { options.packages = path.resolve( cwd, options.packages ); + /* istanbul ignore if */ if ( !Array.isArray( options.packagesPrefix ) ) { options.packagesPrefix = [ options.packagesPrefix ]; } + // Check if under specified `cwd` path, the git repository exists. + // If so, find a branch name that the repository is checked out. See #103. + if ( fs.existsSync( path.join( cwd, '.git' ) ) ) { + const response = shell.exec( 'git rev-parse --abbrev-ref HEAD', { silent: true } ); + + options.cwdPackageBranch = response.stdout.trim(); + } + return options; }; @@ -84,4 +95,10 @@ module.exports = function cwdResolver( callOptions, cwd ) { * * @property {String|Array.} [packagesPrefix=[]] Prefix or prefixes which will be removed from packages' names during * printing the summary of the "status" command. + * + * @property {Array.} [standardBranches=[]] Name of branches that are allowed to check out (based on a branch in main repository) + * if specified package does not have defined a branch. + * + * @property {String} [cwdPackageBranch] If the main repository is a git repository, this variable keeps + * a name of a current branch of the repository. The value is required for `standardBranches` option. */ diff --git a/lib/utils/parserepositoryurl.js b/lib/utils/parserepositoryurl.js index a9f2771..76d0481 100644 --- a/lib/utils/parserepositoryurl.js +++ b/lib/utils/parserepositoryurl.js @@ -17,11 +17,19 @@ const url = require( 'url' ); * Used if `repositoryUrl` defines only `'/'`. * @param {String} [options.defaultBranch='master'] The default branch name to be used if the * repository URL doesn't specify it. + * @param {Array.>} [options.standardBranches=[]] Name of branches that are allowed to check out + * based on the value specified as `options.cwdPackageBranch`. + * @param {String} [options.cwdPackageBranch] A name of a branch that the main repository is checked out. * @returns {Repository} */ module.exports = function parseRepositoryUrl( repositoryUrl, options = {} ) { const parsedUrl = url.parse( repositoryUrl ); - const branch = parsedUrl.hash ? parsedUrl.hash.slice( 1 ) : options.defaultBranch || 'master'; + const branch = getBranch( parsedUrl, { + defaultBranch: options.defaultBranch, + standardBranches: options.standardBranches || [], + cwdPackageBranch: options.cwdPackageBranch, + } ); + let repoUrl; if ( repositoryUrl.match( /^(file|https?):\/\// ) || repositoryUrl.match( /^git@/ ) ) { @@ -41,6 +49,23 @@ module.exports = function parseRepositoryUrl( repositoryUrl, options = {} ) { }; }; +function getBranch( parsedUrl, options ) { + const defaultBranch = options.defaultBranch || 'master'; + + // Check if branch is defined in mgit.json. Use it. + if ( parsedUrl.hash ) { + return parsedUrl.hash.slice( 1 ); + } + + // Check if the main repo is on one of standard branches. If yes, use that branch. + if ( options.cwdPackageBranch && options.standardBranches.includes( options.cwdPackageBranch ) ) { + return options.cwdPackageBranch; + } + + // Nothing matches. Use default branch. + return defaultBranch; +} + /** * Repository info. * diff --git a/tests/utils/getoptions.js b/tests/utils/getoptions.js index 27384fd..ab2d4f8 100644 --- a/tests/utils/getoptions.js +++ b/tests/utils/getoptions.js @@ -9,7 +9,11 @@ const getOptions = require( '../../lib/utils/getoptions' ); const path = require( 'upath' ); +const fs = require( 'fs' ); +const shell = require( 'shelljs' ); const expect = require( 'chai' ).expect; +const sinon = require( 'sinon' ); + const cwd = path.resolve( __dirname, '..', 'fixtures', 'project-a' ); describe( 'utils', () => { @@ -33,7 +37,8 @@ describe( 'utils', () => { packagesPrefix: [], overrideDirectoryNames: { 'override-directory': 'custom-directory' - } + }, + standardBranches: [] } ); } ); @@ -58,7 +63,8 @@ describe( 'utils', () => { scope: null, ignore: null, packagesPrefix: [], - overrideDirectoryNames: {} + overrideDirectoryNames: {}, + standardBranches: [] } ); } ); @@ -79,7 +85,8 @@ describe( 'utils', () => { scope: null, ignore: null, packagesPrefix: [], - overrideDirectoryNames: {} + overrideDirectoryNames: {}, + standardBranches: [] } ); } ); @@ -103,8 +110,45 @@ describe( 'utils', () => { scope: null, ignore: null, packagesPrefix: [], - overrideDirectoryNames: {} + overrideDirectoryNames: {}, + standardBranches: [] + } ); + } ); + + it( 'attaches to options branch name from the cwd directory (if in git repository)', () => { + const fsExistsStub = sinon.stub( fs, 'existsSync' ); + const shelljsStub = sinon.stub( shell, 'exec' ); + + fsExistsStub.returns( true ); + shelljsStub.returns( { + stdout: 'master\n' + } ); + + const options = getOptions( {}, cwd ); + + expect( options ).to.have.property( 'dependencies' ); + + delete options.dependencies; + + expect( options ).to.deep.equal( { + cwd, + packages: path.resolve( cwd, 'packages' ), + resolverPath: path.resolve( __dirname, '../../lib/default-resolver.js' ), + resolverUrlTemplate: 'git@github.com:${ path }.git', + resolverTargetDirectory: 'git', + resolverDefaultBranch: 'master', + scope: null, + ignore: null, + packagesPrefix: [], + overrideDirectoryNames: { + 'override-directory': 'custom-directory' + }, + standardBranches: [], + cwdPackageBranch: 'master' } ); + + fsExistsStub.restore(); + shelljsStub.restore(); } ); } ); } ); diff --git a/tests/utils/parserepositoryurl.js b/tests/utils/parserepositoryurl.js index 3f7654a..2374220 100644 --- a/tests/utils/parserepositoryurl.js +++ b/tests/utils/parserepositoryurl.js @@ -108,5 +108,122 @@ describe( 'utils', () => { directory: 'bar' } ); } ); + + describe( 'standardBranches support (ticket: #103)', () => { + it( 'returns default branch name if standard branches is not specified', () => { + const repository = parseRepositoryUrl( 'foo/bar', { + urlTemplate: 'https://github.com/${ path }.git', + defaultBranch: 'develop', + cwdPackageBranch: 'master' + } ); + + expect( repository ).to.deep.equal( { + url: 'https://github.com/foo/bar.git', + branch: 'develop', + directory: 'bar' + } ); + } ); + + it( 'returns default branch name if main package is not a git repository', () => { + const repository = parseRepositoryUrl( 'foo/bar', { + urlTemplate: 'https://github.com/${ path }.git', + defaultBranch: 'develop' + } ); + + expect( repository ).to.deep.equal( { + url: 'https://github.com/foo/bar.git', + branch: 'develop', + directory: 'bar' + } ); + } ); + + it( 'returns "master" as default branch if standard branches and default branch are not specified', () => { + const repository = parseRepositoryUrl( 'foo/bar', { + urlTemplate: 'https://github.com/${ path }.git', + cwdPackageBranch: 'master' + } ); + + expect( repository ).to.deep.equal( { + url: 'https://github.com/foo/bar.git', + branch: 'master', + directory: 'bar' + } ); + } ); + + it( 'returns default branch name if standard branches is an empty array', () => { + const repository = parseRepositoryUrl( 'foo/bar', { + urlTemplate: 'https://github.com/${ path }.git', + defaultBranch: 'develop', + standardBranches: [], + cwdPackageBranch: 'master' + } ); + + expect( repository ).to.deep.equal( { + url: 'https://github.com/foo/bar.git', + branch: 'develop', + directory: 'bar' + } ); + } ); + + it( 'returns default branch name if the main repo is not whitelisted in "standardBranches" array', () => { + const repository = parseRepositoryUrl( 'foo/bar', { + urlTemplate: 'https://github.com/${ path }.git', + defaultBranch: 'develop', + standardBranches: [ 'stable' ], + cwdPackageBranch: 'master' + } ); + + expect( repository ).to.deep.equal( { + url: 'https://github.com/foo/bar.git', + branch: 'develop', + directory: 'bar' + } ); + } ); + + it( 'returns the "cwdPackageBranch" value if a branch is not specified and the value is whitelisted', () => { + const repository = parseRepositoryUrl( 'foo/bar', { + urlTemplate: 'https://github.com/${ path }.git', + defaultBranch: 'develop', + standardBranches: [ 'stable', 'master' ], + cwdPackageBranch: 'stable' + } ); + + expect( repository ).to.deep.equal( { + url: 'https://github.com/foo/bar.git', + branch: 'stable', + directory: 'bar' + } ); + } ); + + it( 'ignores options if a branch is specified in the repository URL', () => { + const repository = parseRepositoryUrl( 'foo/bar#mgit', { + urlTemplate: 'https://github.com/${ path }.git', + defaultBranch: 'develop', + standardBranches: [ 'stable' ], + cwdPackageBranch: 'master' + } ); + + expect( repository ).to.deep.equal( { + url: 'https://github.com/foo/bar.git', + branch: 'mgit', + directory: 'bar' + } ); + } ); + + it( 'ignores options if a branch is specified in the repository URL ("standardBranches" contains "cwdPackageBranch")', () => { + const repository = parseRepositoryUrl( 'foo/bar#mgit', { + urlTemplate: 'https://github.com/${ path }.git', + defaultBranch: 'develop', + standardBranches: [ 'master' ], + cwdPackageBranch: 'master' + } ); + + expect( repository ).to.deep.equal( { + url: 'https://github.com/foo/bar.git', + branch: 'mgit', + directory: 'bar' + } ); + } ); + } ); } ); } ); From 60411b1309211e9fd3edb9af3e0270bd31b5425b Mon Sep 17 00:00:00 2001 From: Kamil Piechaczek Date: Sat, 15 Jun 2019 14:06:23 +0200 Subject: [PATCH 2/5] Added ToC into README. --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 7f775ec..272c6e3 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,29 @@ Multi-repo manager for git. A tool for managing projects build using multiple re mgit2 is designed to work with [yarn workspaces](https://yarnpkg.com/lang/en/docs/workspaces/) and [Lerna](https://github.com/lerna/lerna) out of the box, hence, it mixes the "package" and "repository" concepts. In other words, every repository is meant to be a single [npm](https://npmjs.com) package. It doesn't mean that you must use it with Lerna and npm, but don't be surprised that mgit2 talks about "packages" and works best with npm packages. +# Table of content + +1. [Installation](#installation) +1. [Usage](#usage) +1. [Configuration](#configuration) + 1. [The `dependencies` option](#the-dependencies-option) + 1. [Recursive cloning](#recursive-cloning) + 1. [Cloning repositories on CI servers](#cloning-repositories-on-ci-servers) + 1. [Standard/core branches](#standardcore-branches) +1. [Commands](#commands) + 1. [`sync`](#sync) + 1. [`pull`](#pull) + 1. [`push`](#push) + 1. [`fetch`](#fetch) + 1. [`exec`](#exec) + 1. [`commit` or `ci`](#commit-alias-ci) + 1. [`close`](#close) + 1. [`save`](#save) + 1. [`status` or `st`](#status-alias-st) + 1. [`diff`](#diff) + 1. [`checkout` or `co`](#checkout-alias-co) +1. [Projects using mgit2](#projects-using-mgit2) + ## Installation ```bash From 21ad587d6dc8c9d52b6a703e0338f9cc022d74b5 Mon Sep 17 00:00:00 2001 From: Kamil Piechaczek Date: Thu, 11 Jul 2019 08:51:00 +0200 Subject: [PATCH 3/5] Moved an entry from README to proper section. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 272c6e3..fd8d242 100644 --- a/README.md +++ b/README.md @@ -208,6 +208,8 @@ If you need to run mgit on a CI server, then configure it to use HTTPS URLs: mgit --resolver-url-template="https://github.com/\${ path }.git" ``` +You can also use full HTTPS URLs to configure `dependencies` in your `mgit.json`. + ### Standard/core branches When you call `mgit sync` or `mgit co` it uses the `master` branch in every repository, unless the repository's branch is defined in `mgit.json`. @@ -226,8 +228,6 @@ In order to simplify the flow, we introduced the standard/core branches option. [Read more about the feature.](https://github.com/cksource/mgit2/issues/103) -You can also use full HTTPS URLs to configure `dependencies` in your `mgit.json`. - ## Commands ```bash From 1e21991dcd56b59301236094e83a62eecebda7bd Mon Sep 17 00:00:00 2001 From: Kamil Piechaczek Date: Thu, 11 Jul 2019 08:54:30 +0200 Subject: [PATCH 4/5] Added a test for 100% CC in the "getOptions()" util function. --- lib/utils/getoptions.js | 1 - tests/utils/getoptions.js | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/lib/utils/getoptions.js b/lib/utils/getoptions.js index 8620416..2ccf518 100644 --- a/lib/utils/getoptions.js +++ b/lib/utils/getoptions.js @@ -40,7 +40,6 @@ module.exports = function cwdResolver( callOptions, cwd ) { options.packages = path.resolve( cwd, options.packages ); - /* istanbul ignore if */ if ( !Array.isArray( options.packagesPrefix ) ) { options.packagesPrefix = [ options.packagesPrefix ]; } diff --git a/tests/utils/getoptions.js b/tests/utils/getoptions.js index 69d8ad3..b70ce35 100644 --- a/tests/utils/getoptions.js +++ b/tests/utils/getoptions.js @@ -115,6 +115,34 @@ describe( 'utils', () => { } ); } ); + it( 'returns "packagesPrefix" as array', () => { + const options = getOptions( { + packagesPrefix: 'ckeditor5-' + }, cwd ); + + expect( options ).to.have.property( 'dependencies' ); + + delete options.dependencies; + + expect( options ).to.deep.equal( { + cwd, + packages: path.resolve( cwd, 'packages' ), + resolverPath: path.resolve( __dirname, '../../lib/default-resolver.js' ), + resolverUrlTemplate: 'git@github.com:${ path }.git', + resolverTargetDirectory: 'git', + resolverDefaultBranch: 'master', + scope: null, + ignore: null, + packagesPrefix: [ + 'ckeditor5-' + ], + overrideDirectoryNames: { + 'override-directory': 'custom-directory' + }, + standardBranches: [] + } ); + } ); + it( 'attaches to options branch name from the cwd directory (if in git repository)', () => { const fsExistsStub = sinon.stub( fs, 'existsSync' ); const shelljsStub = sinon.stub( shell, 'exec' ); From e5cd2915776d75a371c645ee6e2d1f361dec2dfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotrek=20Koszuli=C5=84ski?= Date: Mon, 15 Jul 2019 10:45:59 +0200 Subject: [PATCH 5/5] Renamed standard branches to base branches. --- README.md | 16 +++++++++------- lib/default-resolver.js | 2 +- lib/utils/getoptions.js | 6 +++--- lib/utils/parserepositoryurl.js | 8 ++++---- tests/utils/getoptions.js | 12 ++++++------ tests/utils/parserepositoryurl.js | 22 +++++++++++----------- 6 files changed, 34 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index fd8d242..bb74bb5 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ mgit2 is designed to work with [yarn workspaces](https://yarnpkg.com/lang/en/doc 1. [The `dependencies` option](#the-dependencies-option) 1. [Recursive cloning](#recursive-cloning) 1. [Cloning repositories on CI servers](#cloning-repositories-on-ci-servers) - 1. [Standard/core branches](#standardcore-branches) + 1. [Base branches](#base-branches) 1. [Commands](#commands) 1. [`sync`](#sync) 1. [`pull`](#pull) @@ -210,23 +210,25 @@ mgit --resolver-url-template="https://github.com/\${ path }.git" You can also use full HTTPS URLs to configure `dependencies` in your `mgit.json`. -### Standard/core branches +### Base branches -When you call `mgit sync` or `mgit co` it uses the `master` branch in every repository, unless the repository's branch is defined in `mgit.json`. +When you call `mgit sync` or `mgit co`, mgit will use the following algorithm to determine the branch to which each repository should be checked out: -If you support only the one main/core branch in your projects, it isn't a problem. But if you have more than one, on every single branch you need modify branches for dependencies in `mgit.json`. +1. If a branch is defined in `mgit.json`, use it. A branch can be defined after `#` in a repository URL. For example: `"@cksource/foo": "cksource/foo#dev"`. +2. If the root repository (assuming, it is a repository) is on one of the "base branches", use that branch name. +3. Otherwise, use `master`. -In order to simplify the flow, we introduced the standard/core branches option. It uses the current branch of the main repository in all cases where the branch is not defined in `mgit.json`. +You can define the base branches as follows: ```json { ... - "standardBranches": [ "master", "stable" ], + "baseBranches": [ "master", "stable" ], ... } ``` -[Read more about the feature.](https://github.com/cksource/mgit2/issues/103) +With this configuration, if the root repository is on `stable`, calling `mgit co` will check out all repositories to `stable`. If you change the branch of the root repository to `master` and call `mgit co`, all sub repositories will be checked out to `master`. ## Commands diff --git a/lib/default-resolver.js b/lib/default-resolver.js index 3ea0de9..59ffb81 100644 --- a/lib/default-resolver.js +++ b/lib/default-resolver.js @@ -24,7 +24,7 @@ module.exports = function resolver( packageName, options ) { const repository = parseRepositoryUrl( repositoryUrl, { urlTemplate: options.resolverUrlTemplate, defaultBranch: options.resolverDefaultBranch, - standardBranches: options.standardBranches, + baseBranches: options.baseBranches, cwdPackageBranch: options.cwdPackageBranch, } ); diff --git a/lib/utils/getoptions.js b/lib/utils/getoptions.js index 2ccf518..a96a953 100644 --- a/lib/utils/getoptions.js +++ b/lib/utils/getoptions.js @@ -29,7 +29,7 @@ module.exports = function cwdResolver( callOptions, cwd ) { scope: null, packagesPrefix: [], overrideDirectoryNames: {}, - standardBranches: [] + baseBranches: [] }; if ( fs.existsSync( mgitJsonPath ) ) { @@ -95,9 +95,9 @@ module.exports = function cwdResolver( callOptions, cwd ) { * @property {String|Array.} [packagesPrefix=[]] Prefix or prefixes which will be removed from packages' names during * printing the summary of the "status" command. * - * @property {Array.} [standardBranches=[]] Name of branches that are allowed to check out (based on a branch in main repository) + * @property {Array.} [baseBranches=[]] Name of branches that are allowed to check out (based on a branch in main repository) * if specified package does not have defined a branch. * * @property {String} [cwdPackageBranch] If the main repository is a git repository, this variable keeps - * a name of a current branch of the repository. The value is required for `standardBranches` option. + * a name of a current branch of the repository. The value is required for `baseBranches` option. */ diff --git a/lib/utils/parserepositoryurl.js b/lib/utils/parserepositoryurl.js index cd1cbec..3553d9c 100644 --- a/lib/utils/parserepositoryurl.js +++ b/lib/utils/parserepositoryurl.js @@ -17,7 +17,7 @@ const url = require( 'url' ); * Used if `repositoryUrl` defines only `'/'`. * @param {String} [options.defaultBranch='master'] The default branch name to be used if the * repository URL doesn't specify it. - * @param {Array.>} [options.standardBranches=[]] Name of branches that are allowed to check out + * @param {Array.>} [options.baseBranches=[]] Name of branches that are allowed to check out * based on the value specified as `options.cwdPackageBranch`. * @param {String} [options.cwdPackageBranch] A name of a branch that the main repository is checked out. * @returns {Repository} @@ -26,7 +26,7 @@ module.exports = function parseRepositoryUrl( repositoryUrl, options = {} ) { const parsedUrl = url.parse( repositoryUrl ); const branch = getBranch( parsedUrl, { defaultBranch: options.defaultBranch, - standardBranches: options.standardBranches || [], + baseBranches: options.baseBranches || [], cwdPackageBranch: options.cwdPackageBranch, } ); @@ -57,8 +57,8 @@ function getBranch( parsedUrl, options ) { return parsedUrl.hash.slice( 1 ); } - // Check if the main repo is on one of standard branches. If yes, use that branch. - if ( options.cwdPackageBranch && options.standardBranches.includes( options.cwdPackageBranch ) ) { + // Check if the main repo is on one of base branches. If yes, use that branch. + if ( options.cwdPackageBranch && options.baseBranches.includes( options.cwdPackageBranch ) ) { return options.cwdPackageBranch; } diff --git a/tests/utils/getoptions.js b/tests/utils/getoptions.js index b70ce35..9775a84 100644 --- a/tests/utils/getoptions.js +++ b/tests/utils/getoptions.js @@ -38,7 +38,7 @@ describe( 'utils', () => { overrideDirectoryNames: { 'override-directory': 'custom-directory' }, - standardBranches: [] + baseBranches: [] } ); } ); @@ -64,7 +64,7 @@ describe( 'utils', () => { ignore: null, packagesPrefix: [], overrideDirectoryNames: {}, - standardBranches: [] + baseBranches: [] } ); } ); @@ -86,7 +86,7 @@ describe( 'utils', () => { ignore: null, packagesPrefix: [], overrideDirectoryNames: {}, - standardBranches: [] + baseBranches: [] } ); } ); @@ -111,7 +111,7 @@ describe( 'utils', () => { ignore: null, packagesPrefix: [], overrideDirectoryNames: {}, - standardBranches: [] + baseBranches: [] } ); } ); @@ -139,7 +139,7 @@ describe( 'utils', () => { overrideDirectoryNames: { 'override-directory': 'custom-directory' }, - standardBranches: [] + baseBranches: [] } ); } ); @@ -171,7 +171,7 @@ describe( 'utils', () => { overrideDirectoryNames: { 'override-directory': 'custom-directory' }, - standardBranches: [], + baseBranches: [], cwdPackageBranch: 'master' } ); diff --git a/tests/utils/parserepositoryurl.js b/tests/utils/parserepositoryurl.js index 7d2a3f7..f4234d2 100644 --- a/tests/utils/parserepositoryurl.js +++ b/tests/utils/parserepositoryurl.js @@ -109,8 +109,8 @@ describe( 'utils', () => { } ); } ); - describe( 'standardBranches support (ticket: #103)', () => { - it( 'returns default branch name if standard branches is not specified', () => { + describe( 'baseBranches support (ticket: #103)', () => { + it( 'returns default branch name if base branches is not specified', () => { const repository = parseRepositoryUrl( 'foo/bar', { urlTemplate: 'https://github.com/${ path }.git', defaultBranch: 'develop', @@ -137,7 +137,7 @@ describe( 'utils', () => { } ); } ); - it( 'returns "master" as default branch if standard branches and default branch are not specified', () => { + it( 'returns "master" as default branch if base branches and default branch are not specified', () => { const repository = parseRepositoryUrl( 'foo/bar', { urlTemplate: 'https://github.com/${ path }.git', cwdPackageBranch: 'master' @@ -150,11 +150,11 @@ describe( 'utils', () => { } ); } ); - it( 'returns default branch name if standard branches is an empty array', () => { + it( 'returns default branch name if base branches is an empty array', () => { const repository = parseRepositoryUrl( 'foo/bar', { urlTemplate: 'https://github.com/${ path }.git', defaultBranch: 'develop', - standardBranches: [], + baseBranches: [], cwdPackageBranch: 'master' } ); @@ -165,11 +165,11 @@ describe( 'utils', () => { } ); } ); - it( 'returns default branch name if the main repo is not whitelisted in "standardBranches" array', () => { + it( 'returns default branch name if the main repo is not whitelisted in "baseBranches" array', () => { const repository = parseRepositoryUrl( 'foo/bar', { urlTemplate: 'https://github.com/${ path }.git', defaultBranch: 'develop', - standardBranches: [ 'stable' ], + baseBranches: [ 'stable' ], cwdPackageBranch: 'master' } ); @@ -184,7 +184,7 @@ describe( 'utils', () => { const repository = parseRepositoryUrl( 'foo/bar', { urlTemplate: 'https://github.com/${ path }.git', defaultBranch: 'develop', - standardBranches: [ 'stable', 'master' ], + baseBranches: [ 'stable', 'master' ], cwdPackageBranch: 'stable' } ); @@ -199,7 +199,7 @@ describe( 'utils', () => { const repository = parseRepositoryUrl( 'foo/bar#mgit', { urlTemplate: 'https://github.com/${ path }.git', defaultBranch: 'develop', - standardBranches: [ 'stable' ], + baseBranches: [ 'stable' ], cwdPackageBranch: 'master' } ); @@ -210,11 +210,11 @@ describe( 'utils', () => { } ); } ); - it( 'ignores options if a branch is specified in the repository URL ("standardBranches" contains "cwdPackageBranch")', () => { + it( 'ignores options if a branch is specified in the repository URL ("baseBranches" contains "cwdPackageBranch")', () => { const repository = parseRepositoryUrl( 'foo/bar#mgit', { urlTemplate: 'https://github.com/${ path }.git', defaultBranch: 'develop', - standardBranches: [ 'master' ], + baseBranches: [ 'master' ], cwdPackageBranch: 'master' } );