-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
314 additions
and
27 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,30 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import * as path from 'path'; | ||
import runJest from '../runJest'; | ||
|
||
describe('Custom Haste Integration', () => { | ||
test('valid test with fake module resolutions', () => { | ||
const config = { | ||
haste: { | ||
hasteMapModulePath: path.resolve( | ||
__dirname, | ||
'..', | ||
'custom-haste-map/hasteMap.js', | ||
), | ||
}, | ||
}; | ||
|
||
const {exitCode} = runJest('custom-haste-map', [ | ||
'--config', | ||
JSON.stringify(config), | ||
'hasteExample.test.js', | ||
]); | ||
expect(exitCode).toBe(0); | ||
}); | ||
}); |
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,18 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const add = require('fakeModuleName'); | ||
|
||
describe('Custom Haste', () => { | ||
test('adds ok', () => { | ||
expect(true).toBe(true); | ||
expect(add(1, 2)).toBe(3); | ||
}); | ||
}); |
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,15 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
*/ | ||
|
||
'use strict'; | ||
|
||
function add(a, b) { | ||
return a + b; | ||
} | ||
|
||
module.exports = add; |
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,139 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const path = require('path'); | ||
const fakeFile = { | ||
file: path.resolve(__dirname, '__tests__/hasteExampleHelper.js'), | ||
moduleName: 'fakeModuleName', | ||
sha1: 'fakeSha1', | ||
}; | ||
|
||
const fakeJSON = 'fakeJSON'; | ||
|
||
const testPath = path.resolve(__dirname, '__tests__/hasteExample.test.js'); | ||
|
||
const allFiles = [fakeFile.file, testPath]; | ||
|
||
class HasteFS { | ||
getModuleName(file) { | ||
if (file === fakeFile.file) { | ||
return fakeFile.moduleName; | ||
} | ||
return null; | ||
} | ||
|
||
getSize(file) { | ||
return null; | ||
} | ||
|
||
getDependencies(file) { | ||
if (file === testPath) { | ||
return fakeFile.file; | ||
} | ||
return []; | ||
} | ||
|
||
getSha1(file) { | ||
if (file === fakeFile.file) { | ||
return fakeFile.sha1; | ||
} | ||
return null; | ||
} | ||
|
||
exists(file) { | ||
return allFiles.includes(file); | ||
} | ||
|
||
getAllFiles() { | ||
return allFiles; | ||
} | ||
|
||
getFileIterator() { | ||
return allFiles; | ||
} | ||
|
||
getAbsoluteFileIterator() { | ||
return allFiles; | ||
} | ||
|
||
matchFiles(pattern) { | ||
if (!(pattern instanceof RegExp)) { | ||
pattern = new RegExp(pattern); | ||
} | ||
const files = []; | ||
for (const file of this.getAbsoluteFileIterator()) { | ||
if (pattern.test(file)) { | ||
files.push(file); | ||
} | ||
} | ||
return files; | ||
} | ||
|
||
matchFilesWithGlob(globs, root) { | ||
return []; | ||
} | ||
} | ||
|
||
class ModuleMap { | ||
getModule(name, platform, supportsNativePlatform, type) { | ||
if (name === fakeFile.moduleName) { | ||
return fakeFile.file; | ||
} | ||
return null; | ||
} | ||
|
||
getPackage() { | ||
return null; | ||
} | ||
|
||
getMockModule() { | ||
return undefined; | ||
} | ||
|
||
getRawModuleMap() { | ||
return {}; | ||
} | ||
|
||
toJSON() { | ||
return fakeJSON; | ||
} | ||
} | ||
|
||
class HasteMap { | ||
constructor(options) { | ||
this._cachePath = HasteMap.getCacheFilePath( | ||
options.cacheDirectory, | ||
options.name, | ||
); | ||
} | ||
|
||
async build() { | ||
return { | ||
hasteFS: new HasteFS(), | ||
moduleMap: new ModuleMap(), | ||
}; | ||
} | ||
|
||
static getCacheFilePath(tmpdir, name) { | ||
return path.join(tmpdir, name); | ||
} | ||
|
||
getCacheFilePath() { | ||
return this._cachePath; | ||
} | ||
|
||
static getModuleMapFromJSON(json) { | ||
if (json === fakeJSON) { | ||
return new ModuleMap(); | ||
} | ||
throw new Error('Failed to parse serialized module map'); | ||
} | ||
} | ||
|
||
module.exports = HasteMap; |
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,7 @@ | ||
{ | ||
"jest": { | ||
"haste": { | ||
"hasteMapModulePath": "<rootDir>/hasteMap.js" | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.