-
Notifications
You must be signed in to change notification settings - Fork 199
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
1 parent
0382be7
commit 7c98ad9
Showing
31 changed files
with
150 additions
and
3 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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,141 @@ | ||
/* eslint-disable eslint-comments/disable-enable-pair */ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
/* eslint-disable eslint-comments/no-unlimited-disable */ | ||
const { spawn } = require('child_process'); | ||
const { kill } = require('cross-port-killer'); | ||
const puppeteer = require('puppeteer'); | ||
const { join, dirname } = require('path'); | ||
const fs = require('fs'); | ||
const getNpmRegistry = require('getnpmregistry'); | ||
const execa = require('execa'); | ||
|
||
const env = Object.create(process.env); | ||
env.BROWSER = 'none'; | ||
env.TEST = true; | ||
env.COMPRESS = 'none'; | ||
env.PROGRESS = 'none'; | ||
// flag to prevent multiple test | ||
|
||
let browser; | ||
|
||
const startServer = async path => { | ||
let once = false; | ||
return new Promise(resolve => { | ||
env.PAGES_PATH = path + '/src'; | ||
const startServer = spawn(/^win/.test(process.platform) ? 'npm.cmd' : 'npm', ['start'], { | ||
env, | ||
}); | ||
|
||
startServer.on('exit', () => { | ||
kill(process.env.PORT || 8000); | ||
}); | ||
|
||
console.log('Starting development server'); | ||
startServer.stdout.on('data', data => { | ||
console.log(data.toString()); | ||
// hack code , wait umi | ||
if (!once && data.toString().indexOf('Compiled successfully') >= 0) { | ||
// eslint-disable-next-line | ||
once = true; | ||
return resolve(startServer); | ||
} | ||
}); | ||
}); | ||
}; | ||
|
||
const autoScroll = page => { | ||
return page.evaluate(() => { | ||
return new Promise((resolve, reject) => { | ||
var totalHeight = 0; | ||
var distance = 100; | ||
var timer = setInterval(() => { | ||
var scrollHeight = document.body.scrollHeight; | ||
window.scrollBy(0, distance); | ||
totalHeight += distance; | ||
if (totalHeight >= scrollHeight) { | ||
clearInterval(timer); | ||
resolve(); | ||
} | ||
}, 100); | ||
}); | ||
}); | ||
}; | ||
|
||
const getImage = async (page, path) => { | ||
const server = await startServer(path); | ||
|
||
await page.reload('http://127.0.0.1:8000'); | ||
|
||
await page.setViewport({ | ||
width: 1440, | ||
height: 800, | ||
}); | ||
|
||
await autoScroll(page); | ||
|
||
await page.screenshot({ | ||
path: join(path, 'snapshot.png'), | ||
fullPage: true, | ||
}); | ||
|
||
server.kill(); | ||
}; | ||
|
||
const openBrowser = async () => { | ||
browser = await puppeteer.launch({ | ||
headless: false, | ||
args: [ | ||
'--disable-gpu', | ||
'--disable-dev-shm-usage', | ||
'--no-first-run', | ||
'--no-zygote', | ||
'--no-sandbox', | ||
], | ||
}); | ||
const page = await browser.newPage(); | ||
page.goto('http://127.0.0.1:8000'); | ||
return page; | ||
}; | ||
|
||
const getAllFile = async () => { | ||
const cwd = join(__dirname, '../'); | ||
const files = fs.readdirSync(cwd); | ||
return files.filter(path => { | ||
const itemPath = join(cwd, path); | ||
const stat = fs.statSync(itemPath); | ||
if (path.includes('.') || path.includes('_') || path.includes('node_modules')) { | ||
return false; | ||
} | ||
if (stat.isDirectory()) { | ||
return true; | ||
} | ||
return false; | ||
}); | ||
}; | ||
|
||
getAllFile().then(async dirList => { | ||
const registry = await getNpmRegistry(); | ||
|
||
kill(process.env.PORT || 8000); | ||
const page = await openBrowser(); | ||
const loopGetImage = async index => { | ||
try { | ||
console.log('install ' + dirList[index] + ' dependencies'); | ||
await execa('yarn', ['install', `--registry=${registry}`], { | ||
cwd: join(__dirname, '../' + dirList[index]), | ||
}); | ||
await getImage(page, dirList[index]); | ||
|
||
if (dirList.length > index) { | ||
console.log('Screenshot ' + dirList[index]); | ||
|
||
return loopGetImage(index + 1); | ||
} | ||
} catch (error) { | ||
console.log(error); | ||
} | ||
return Promise.resolve(true); | ||
}; | ||
await loopGetImage(0); | ||
browser.close(); | ||
}); |
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