-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(content-docs): suppress git error on multiple occurrences (#6973)
- Loading branch information
Showing
6 changed files
with
112 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import fs from 'fs-extra'; | ||
import os from 'os'; | ||
import path from 'path'; | ||
import shell from 'shelljs'; | ||
|
||
class Git { | ||
constructor(private dir: string) { | ||
const res = shell.exec('git init', {cwd: dir, silent: true}); | ||
if (res.code !== 0) { | ||
throw new Error(`git init exited with code ${res.code}. | ||
stderr: ${res.stderr} | ||
stdout: ${res.stdout}`); | ||
} | ||
// Doesn't matter currently | ||
shell.exec('git config user.email "[email protected]"', { | ||
cwd: dir, | ||
silent: true, | ||
}); | ||
shell.exec('git config user.name "Test"', {cwd: dir, silent: true}); | ||
|
||
shell.exec('git commit --allow-empty -m "First commit"', { | ||
cwd: dir, | ||
silent: true, | ||
}); | ||
} | ||
commit(msg: string, date: string, author: string): void { | ||
const addRes = shell.exec('git add .', {cwd: this.dir, silent: true}); | ||
const commitRes = shell.exec( | ||
`git commit -m "${msg}" --date "${date}T00:00:00Z" --author "${author}"`, | ||
{ | ||
cwd: this.dir, | ||
env: {GIT_COMMITTER_DATE: `${date}T00:00:00Z`}, | ||
silent: true, | ||
}, | ||
); | ||
if (addRes.code !== 0) { | ||
throw new Error(`git add exited with code ${addRes.code}. | ||
stderr: ${addRes.stderr} | ||
stdout: ${addRes.stdout}`); | ||
} | ||
if (commitRes.code !== 0) { | ||
throw new Error(`git commit exited with code ${commitRes.code}. | ||
stderr: ${commitRes.stderr} | ||
stdout: ${commitRes.stdout}`); | ||
} | ||
} | ||
} | ||
|
||
// This function is sync so the same mock repo can be shared across tests | ||
export function createTempRepo(): {repoDir: string; git: Git} { | ||
const repoDir = fs.mkdtempSync(path.join(os.tmpdir(), 'git-test-repo')); | ||
|
||
const git = new Git(repoDir); | ||
|
||
return {repoDir, git}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,51 +8,12 @@ | |
import {FileNotTrackedError, getFileCommitDate} from '../gitUtils'; | ||
import fs from 'fs-extra'; | ||
import path from 'path'; | ||
import os from 'os'; | ||
import shell from 'shelljs'; | ||
import {createTempRepo} from '@testing-utils/git'; | ||
|
||
// This function is sync so the same mock repo can be shared across tests | ||
/* eslint-disable no-restricted-properties */ | ||
function createTempRepo() { | ||
const repoDir = fs.mkdtempSync(path.join(os.tmpdir(), 'git-test-repo')); | ||
class Git { | ||
constructor(private dir: string) { | ||
const res = shell.exec('git init', {cwd: dir, silent: true}); | ||
if (res.code !== 0) { | ||
throw new Error(`git init exited with code ${res.code}. | ||
stderr: ${res.stderr} | ||
stdout: ${res.stdout}`); | ||
} | ||
// Doesn't matter currently | ||
shell.exec('git config user.email "[email protected]"', { | ||
cwd: dir, | ||
silent: true, | ||
}); | ||
shell.exec('git config user.name "Test"', {cwd: dir, silent: true}); | ||
} | ||
commit(msg: string, date: string, author: string) { | ||
const addRes = shell.exec('git add .', {cwd: this.dir, silent: true}); | ||
const commitRes = shell.exec( | ||
`git commit -m "${msg}" --date "${date}T00:00:00Z" --author "${author}"`, | ||
{ | ||
cwd: this.dir, | ||
env: {GIT_COMMITTER_DATE: `${date}T00:00:00Z`}, | ||
silent: true, | ||
}, | ||
); | ||
if (addRes.code !== 0) { | ||
throw new Error(`git add exited with code ${addRes.code}. | ||
stderr: ${addRes.stderr} | ||
stdout: ${addRes.stdout}`); | ||
} | ||
if (commitRes.code !== 0) { | ||
throw new Error(`git commit exited with code ${commitRes.code}. | ||
stderr: ${commitRes.stderr} | ||
stdout: ${commitRes.stdout}`); | ||
} | ||
} | ||
} | ||
const git = new Git(repoDir); | ||
function initializeTempRepo() { | ||
const {repoDir, git} = createTempRepo(); | ||
|
||
fs.writeFileSync(path.join(repoDir, 'test.txt'), 'Some content'); | ||
git.commit( | ||
'Create test.txt', | ||
|
@@ -79,11 +40,12 @@ stdout: ${commitRes.stdout}`); | |
'Josh-Cena <[email protected]>', | ||
); | ||
fs.writeFileSync(path.join(repoDir, 'untracked.txt'), "I'm untracked"); | ||
|
||
return repoDir; | ||
} | ||
|
||
describe('getFileCommitDate', () => { | ||
const repoDir = createTempRepo(); | ||
const repoDir = initializeTempRepo(); | ||
it('returns earliest commit date', async () => { | ||
expect(getFileCommitDate(path.join(repoDir, 'test.txt'), {})).toEqual({ | ||
date: new Date('2020-06-19'), | ||
|