test
This commit is contained in:
parent
67cf76a1fa
commit
980ec3a1ae
96
.github/workflows/CI.yml
vendored
96
.github/workflows/CI.yml
vendored
@ -89,99 +89,5 @@ jobs:
|
|||||||
node-modules-
|
node-modules-
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm install
|
run: npm install
|
||||||
- name: Install Chrome
|
|
||||||
uses: browser-actions/setup-chrome@latest
|
|
||||||
with:
|
|
||||||
chrome-version: stable
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
env:
|
run: npm test
|
||||||
CHROME_HEADLESS: 1
|
|
||||||
CHROME_PATH: chrome
|
|
||||||
CHROME_FLAGS: "--headless --disable-gpu --no-sandbox --enable-features=SharedArrayBuffer,CrossOriginIsolation"
|
|
||||||
HEADERS: '{"Cross-Origin-Opener-Policy":"same-origin","Cross-Origin-Embedder-Policy":"require-corp","Cross-Origin-Resource-Policy":"cross-origin","Origin-Agent-Cluster":"?1"}'
|
|
||||||
run: |
|
|
||||||
# Start test server with proper headers
|
|
||||||
npm run serve -- --headers "${HEADERS}" &
|
|
||||||
|
|
||||||
# Increase wait time to ensure server is ready
|
|
||||||
sleep 15
|
|
||||||
|
|
||||||
# Verify headers and isolation status
|
|
||||||
echo "Checking security headers and isolation status..."
|
|
||||||
curl -I http://localhost:3000/tests/ffmpeg-core-st.test.html
|
|
||||||
|
|
||||||
# Run verification script first
|
|
||||||
echo "Verifying browser environment..."
|
|
||||||
cat << EOF > verify-browser.html
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Cross-Origin-Opener-Policy" content="same-origin">
|
|
||||||
<meta http-equiv="Cross-Origin-Embedder-Policy" content="require-corp">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script>
|
|
||||||
console.log('SharedArrayBuffer available:', typeof SharedArrayBuffer !== 'undefined');
|
|
||||||
console.log('crossOriginIsolated:', window.crossOriginIsolated);
|
|
||||||
if (!window.crossOriginIsolated || typeof SharedArrayBuffer === 'undefined') {
|
|
||||||
throw new Error('Browser environment not properly configured for SharedArrayBuffer');
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Run single-threaded tests first
|
|
||||||
echo "Running single-threaded tests..."
|
|
||||||
npx mocha-headless-chrome \
|
|
||||||
--args="$CHROME_FLAGS" \
|
|
||||||
-a no-sandbox \
|
|
||||||
-f http://localhost:3000/tests/ffmpeg-core-st.test.html 2>&1 | tee st-core-test.log
|
|
||||||
|
|
||||||
npx mocha-headless-chrome \
|
|
||||||
--args="$CHROME_FLAGS" \
|
|
||||||
-a no-sandbox \
|
|
||||||
-f http://localhost:3000/tests/ffmpeg-st.test.html 2>&1 | tee st-test.log
|
|
||||||
|
|
||||||
# Run multi-threaded tests
|
|
||||||
echo "Running multi-threaded tests..."
|
|
||||||
# Create a test script to verify browser environment
|
|
||||||
cat << EOF > verify-browser.html
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Browser Environment Test</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script>
|
|
||||||
console.log('SharedArrayBuffer available:', typeof SharedArrayBuffer !== 'undefined');
|
|
||||||
console.log('crossOriginIsolated:', window.crossOriginIsolated);
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Run the verification in Chrome
|
|
||||||
echo "Verifying browser environment..."
|
|
||||||
npx mocha-headless-chrome \
|
|
||||||
--args="$CHROME_FLAGS --enable-features=SharedArrayBuffer,CrossOriginIsolation" \
|
|
||||||
-a no-sandbox \
|
|
||||||
-f http://localhost:3000/verify-browser.html
|
|
||||||
|
|
||||||
# Run MT tests with verified configuration
|
|
||||||
npx mocha-headless-chrome \
|
|
||||||
--args="$CHROME_FLAGS --enable-features=SharedArrayBuffer,CrossOriginIsolation" \
|
|
||||||
-a no-sandbox \
|
|
||||||
-f http://localhost:3000/tests/ffmpeg-core-mt.test.html 2>&1 | tee mt-core-test.log
|
|
||||||
|
|
||||||
npx mocha-headless-chrome \
|
|
||||||
--args="$CHROME_FLAGS --enable-features=SharedArrayBuffer,CrossOriginIsolation" \
|
|
||||||
-a no-sandbox \
|
|
||||||
-f http://localhost:3000/tests/ffmpeg-mt.test.html 2>&1 | tee mt-test.log
|
|
||||||
|
|
||||||
# Display all logs for debugging
|
|
||||||
echo "=== Test Logs ==="
|
|
||||||
for log in *-test.log; do
|
|
||||||
echo "Contents of $log:"
|
|
||||||
cat $log
|
|
||||||
done
|
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
const isMTSupported = typeof SharedArrayBuffer !== "undefined";
|
|
||||||
const isIsolated = window.crossOriginIsolated;
|
|
||||||
|
|
||||||
if (FFMPEG_TYPE === "mt" && !isMTSupported) {
|
|
||||||
console.warn("SharedArrayBuffer not available, skipping MT tests");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (FFMPEG_TYPE === "mt" && !isIsolated) {
|
|
||||||
console.warn("Cross-origin isolation not available, skipping MT tests");
|
|
||||||
}
|
|
||||||
|
|
||||||
let core;
|
let core;
|
||||||
|
|
||||||
const genName = (name) => `[ffmpeg-core][${FFMPEG_TYPE}] ${name}`;
|
const genName = (name) => `[ffmpeg-core][${FFMPEG_TYPE}] ${name}`;
|
||||||
|
Loading…
Reference in New Issue
Block a user