mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
WIP replay integration tests
This commit is contained in:
parent
8021c66869
commit
d947c4b4a4
10985
test/automated/replays/package-lock.json
generated
Normal file
10985
test/automated/replays/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
18
test/automated/replays/package.json
Normal file
18
test/automated/replays/package.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "owncast-test-automation",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "jest --bail"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"m3u8-parser": "^4.7.0",
|
||||
"node-fetch": "^2.6.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"jest": "^26.6.3"
|
||||
}
|
||||
}
|
||||
130
test/automated/replays/replays.test.js
Normal file
130
test/automated/replays/replays.test.js
Normal file
@ -0,0 +1,130 @@
|
||||
const m3u8Parser = require('m3u8-parser');
|
||||
const fetch = require('node-fetch');
|
||||
const url = require('url');
|
||||
const { test } = require('@jest/globals');
|
||||
|
||||
const REPLAYS_API = '/api/replays';
|
||||
const TEST_OWNCAST_INSTANCE = 'http://localhost:8080';
|
||||
const HLS_FETCH_ITERATIONS = 5;
|
||||
|
||||
jest.setTimeout(40000);
|
||||
|
||||
async function getPlaylist(urlString) {
|
||||
const response = await fetch(urlString);
|
||||
expect(response.status).toBe(200);
|
||||
const body = await response.text();
|
||||
|
||||
var parser = new m3u8Parser.Parser();
|
||||
|
||||
parser.push(body);
|
||||
parser.end();
|
||||
|
||||
return parser.manifest;
|
||||
}
|
||||
|
||||
async function getReplaysAPI(urlString) {
|
||||
const response = await fetch(urlString);
|
||||
expect(response.status).toBe(200);
|
||||
const body = await response.text();
|
||||
return body;
|
||||
}
|
||||
|
||||
function normalizeUrl(urlString, baseUrl) {
|
||||
let parsedString = url.parse(urlString);
|
||||
if (!parsedString.host) {
|
||||
const testInstanceRoot = url.parse(baseUrl);
|
||||
parsedString.protocol = testInstanceRoot.protocol;
|
||||
parsedString.host = testInstanceRoot.host;
|
||||
|
||||
const filename = baseUrl.substring(baseUrl.lastIndexOf('/') + 1);
|
||||
parsedString.pathname =
|
||||
testInstanceRoot.pathname.replace(filename, '') + urlString;
|
||||
}
|
||||
return url.format(parsedString).toString();
|
||||
}
|
||||
|
||||
// Iterate over an array of video segments and make sure they return back
|
||||
// valid status.
|
||||
async function validateSegments(segments) {
|
||||
for (let segment of segments) {
|
||||
const res = await fetch(segment);
|
||||
expect(res.status).toBe(200);
|
||||
}
|
||||
}
|
||||
|
||||
describe('fetch list of clips', () => {
|
||||
const replaysAPIEndpoint = `${TEST_OWNCAST_INSTANCE}${REPLAYS_API}`;
|
||||
// var masterPlaylist;
|
||||
// var mediaPlaylistUrl;
|
||||
|
||||
test('fetch replay list', async (done) => {
|
||||
console.log(replaysAPIEndpoint);
|
||||
try {
|
||||
const response = await getReplaysAPI(replaysAPIEndpoint);
|
||||
console.log(response);
|
||||
} catch (e) {
|
||||
console.error('error fetching and parsing master playlist', e);
|
||||
}
|
||||
|
||||
done();
|
||||
});
|
||||
|
||||
// test('verify there is a media playlist', () => {
|
||||
// // Master playlist should have at least one media playlist.
|
||||
// expect(masterPlaylist.playlists.length).toBe(1);
|
||||
|
||||
// try {
|
||||
// mediaPlaylistUrl = normalizeUrl(
|
||||
// masterPlaylist.playlists[0].uri,
|
||||
// masterPlaylistUrl
|
||||
// );
|
||||
// } catch (e) {
|
||||
// console.error('error fetching and parsing media playlist', e);
|
||||
// }
|
||||
// });
|
||||
|
||||
// test('verify there are segments', async (done) => {
|
||||
// let playlist;
|
||||
// try {
|
||||
// playlist = await getPlaylist(mediaPlaylistUrl);
|
||||
// } catch (e) {
|
||||
// console.error('error verifying segments in media playlist', e);
|
||||
// }
|
||||
|
||||
// const segments = playlist.segments;
|
||||
// expect(segments.length).toBeGreaterThan(0);
|
||||
|
||||
// done();
|
||||
// });
|
||||
|
||||
// // Iterate over segments and make sure they change.
|
||||
// // Use the reported duration of the segment to wait to
|
||||
// // fetch another just like a real HLS player would do.
|
||||
// var lastSegmentUrl;
|
||||
// for (let i = 0; i < HLS_FETCH_ITERATIONS; i++) {
|
||||
// test('fetch and monitor media playlist segments ' + i, async (done) => {
|
||||
// await new Promise((r) => setTimeout(r, 5000));
|
||||
|
||||
// try {
|
||||
// var playlist = await getPlaylist(mediaPlaylistUrl);
|
||||
// } catch (e) {
|
||||
// console.error('error updating media playlist', mediaPlaylistUrl, e);
|
||||
// }
|
||||
|
||||
// const segments = playlist.segments;
|
||||
// const segment = segments[segments.length - 1];
|
||||
// expect(segment.uri).not.toBe(lastSegmentUrl);
|
||||
|
||||
// try {
|
||||
// var segmentUrl = normalizeUrl(segment.uri, mediaPlaylistUrl);
|
||||
// await validateSegments([segmentUrl]);
|
||||
// } catch (e) {
|
||||
// console.error('unable to validate HLS segment', segmentUrl, e);
|
||||
// }
|
||||
|
||||
// lastSegmentUrl = segment.uri;
|
||||
|
||||
// done();
|
||||
// });
|
||||
// }
|
||||
});
|
||||
19
test/automated/replays/run.sh
Executable file
19
test/automated/replays/run.sh
Executable file
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
source ../tools.sh
|
||||
|
||||
# Install the node test framework
|
||||
npm install --silent >/dev/null
|
||||
|
||||
install_ffmpeg
|
||||
|
||||
start_owncast "--enableReplayFeatures"
|
||||
|
||||
start_stream
|
||||
|
||||
sleep 10
|
||||
|
||||
# Run tests against a fresh install with no settings.
|
||||
npm test
|
||||
@ -42,8 +42,13 @@ function start_owncast() {
|
||||
pushd "$(git rev-parse --show-toplevel)" >/dev/null
|
||||
go build -o owncast main.go
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
echo "Running owncast..."
|
||||
./owncast -database "$TEMP_DB" &
|
||||
else
|
||||
echo "Running owncast with flags: $1"
|
||||
fi
|
||||
|
||||
./owncast -database "$TEMP_DB" $1 &
|
||||
SERVER_PID=$!
|
||||
popd >/dev/null
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user