46 lines
1.8 KiB
JavaScript
46 lines
1.8 KiB
JavaScript
/* eslint-disable global-require */
|
|
// We use "require" rather than `fs` so that this works in a browser environment.
|
|
|
|
/* eslint "import/no-unresolved": 0 */
|
|
// We don't want to require *all* fixtures to be generated (especailly in a local environment).
|
|
// We use `eslint` instead of `eslint-disable`, so that we also don't trigger an `Unused eslint-disable directive` when all fixtures are present.
|
|
|
|
import { memoize } from 'lodash';
|
|
|
|
const createFactoryWithDefault = (fn, defaultValue) => () => {
|
|
try {
|
|
return fn();
|
|
} catch {
|
|
return defaultValue;
|
|
}
|
|
};
|
|
|
|
const factory = {
|
|
json: (fn) => createFactoryWithDefault(fn, { error: 'fixture not found' }),
|
|
text: (fn) => createFactoryWithDefault(fn, 'Hello world\nHow are you today?\n'),
|
|
binary: (fn) => createFactoryWithDefault(fn, ''),
|
|
};
|
|
|
|
export const getProject = factory.json(() => require('test_fixtures/api/projects/get.json'));
|
|
export const getEmptyProject = factory.json(() =>
|
|
require('test_fixtures/api/projects/get_empty.json'),
|
|
);
|
|
export const getBranch = factory.json(() =>
|
|
require('test_fixtures/api/projects/branches/get.json'),
|
|
);
|
|
export const getMergeRequests = factory.json(() =>
|
|
require('test_fixtures/api/merge_requests/get.json'),
|
|
);
|
|
export const getRepositoryFiles = factory.json(() =>
|
|
require('test_fixtures/projects_json/files.json'),
|
|
);
|
|
export const getPipelinesEmptyResponse = factory.json(() =>
|
|
require('test_fixtures/projects_json/pipelines_empty.json'),
|
|
);
|
|
export const getCommit = memoize(() => getBranch().commit);
|
|
|
|
export const getBlobReadme = factory.text(() => require('test_fixtures/blob/text/README.md'));
|
|
export const getBlobZip = factory.binary(() => require('test_fixtures/blob/binary/Gemfile.zip'));
|
|
export const getBlobImage = factory.binary(() =>
|
|
require('test_fixtures/blob/images/logo-white.png'),
|
|
);
|