mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Move index.test.ts to worker.test.ts
This commit is contained in:
parent
44ff4765ca
commit
feeaba5a64
1 changed files with 12 additions and 12 deletions
|
@ -29,13 +29,13 @@ if (!globalThis.performance.now) {
|
||||||
}
|
}
|
||||||
|
|
||||||
test('Home page redirect', async () => {
|
test('Home page redirect', async () => {
|
||||||
const result = await app.fetch(
|
const result = await app.request(
|
||||||
new Request('https://fxtwitter.com', {
|
new Request('https://fxtwitter.com', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: botHeaders
|
headers: botHeaders
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
const resultHuman = await app.fetch(
|
const resultHuman = await app.request(
|
||||||
new Request('https://fxtwitter.com', {
|
new Request('https://fxtwitter.com', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: humanHeaders
|
headers: humanHeaders
|
||||||
|
@ -48,7 +48,7 @@ test('Home page redirect', async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
test('Tweet redirect human', async () => {
|
test('Tweet redirect human', async () => {
|
||||||
const result = await app.fetch(
|
const result = await app.request(
|
||||||
new Request('https://fxtwitter.com/jack/status/20', {
|
new Request('https://fxtwitter.com/jack/status/20', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: humanHeaders
|
headers: humanHeaders
|
||||||
|
@ -59,7 +59,7 @@ test('Tweet redirect human', async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
test('Tweet redirect human custom base redirect', async () => {
|
test('Tweet redirect human custom base redirect', async () => {
|
||||||
const result = await app.fetch(
|
const result = await app.request(
|
||||||
new Request('https://fxtwitter.com/jack/status/20', {
|
new Request('https://fxtwitter.com/jack/status/20', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: {
|
headers: {
|
||||||
|
@ -73,7 +73,7 @@ test('Tweet redirect human custom base redirect', async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
test('Twitter moment redirect', async () => {
|
test('Twitter moment redirect', async () => {
|
||||||
const result = await app.fetch(
|
const result = await app.request(
|
||||||
new Request(
|
new Request(
|
||||||
'https://fxtwitter.com/i/events/1572638642127966214?t=0UK7Ny-Jnsp-dUGzlb-M8w&s=35',
|
'https://fxtwitter.com/i/events/1572638642127966214?t=0UK7Ny-Jnsp-dUGzlb-M8w&s=35',
|
||||||
{
|
{
|
||||||
|
@ -87,7 +87,7 @@ test('Twitter moment redirect', async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
test('Tweet response robot', async () => {
|
test('Tweet response robot', async () => {
|
||||||
const result = await app.fetch(
|
const result = await app.request(
|
||||||
new Request('https://fxtwitter.com/jack/status/20', {
|
new Request('https://fxtwitter.com/jack/status/20', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: botHeaders
|
headers: botHeaders
|
||||||
|
@ -97,7 +97,7 @@ test('Tweet response robot', async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
test('API fetch basic Tweet', async () => {
|
test('API fetch basic Tweet', async () => {
|
||||||
const result = await app.fetch(
|
const result = await app.request(
|
||||||
new Request('https://api.fxtwitter.com/status/20', {
|
new Request('https://api.fxtwitter.com/status/20', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: botHeaders
|
headers: botHeaders
|
||||||
|
@ -132,7 +132,7 @@ test('API fetch basic Tweet', async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
// test('API fetch video Tweet', async () => {
|
// test('API fetch video Tweet', async () => {
|
||||||
// const result = await app.fetch(
|
// const result = await app.request(
|
||||||
// new Request('https://api.fxtwitter.com/X/status/854416760933556224', {
|
// new Request('https://api.fxtwitter.com/X/status/854416760933556224', {
|
||||||
// method: 'GET',
|
// method: 'GET',
|
||||||
// headers: botHeaders
|
// headers: botHeaders
|
||||||
|
@ -177,7 +177,7 @@ test('API fetch basic Tweet', async () => {
|
||||||
// });
|
// });
|
||||||
|
|
||||||
// test('API fetch multi-photo Tweet', async () => {
|
// test('API fetch multi-photo Tweet', async () => {
|
||||||
// const result = await app.fetch(
|
// const result = await app.request(
|
||||||
// new Request('https://api.fxtwitter.com/Twitter/status/1445094085593866246', {
|
// new Request('https://api.fxtwitter.com/Twitter/status/1445094085593866246', {
|
||||||
// method: 'GET',
|
// method: 'GET',
|
||||||
// headers: botHeaders
|
// headers: botHeaders
|
||||||
|
@ -224,7 +224,7 @@ test('API fetch basic Tweet', async () => {
|
||||||
// });
|
// });
|
||||||
|
|
||||||
// test('API fetch poll Tweet', async () => {
|
// test('API fetch poll Tweet', async () => {
|
||||||
// const result = await app.fetch(
|
// const result = await app.request(
|
||||||
// new Request('https://api.fxtwitter.com/status/1055475950543167488', {
|
// new Request('https://api.fxtwitter.com/status/1055475950543167488', {
|
||||||
// method: 'GET',
|
// method: 'GET',
|
||||||
// headers: botHeaders
|
// headers: botHeaders
|
||||||
|
@ -273,7 +273,7 @@ test('API fetch basic Tweet', async () => {
|
||||||
// });
|
// });
|
||||||
|
|
||||||
test('API fetch user', async () => {
|
test('API fetch user', async () => {
|
||||||
const result = await app.fetch(
|
const result = await app.request(
|
||||||
new Request('https://api.fxtwitter.com/x', {
|
new Request('https://api.fxtwitter.com/x', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: botHeaders
|
headers: botHeaders
|
||||||
|
@ -303,7 +303,7 @@ test('API fetch user', async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
test('API fetch user that does not exist', async () => {
|
test('API fetch user that does not exist', async () => {
|
||||||
const result = await app.fetch(
|
const result = await app.request(
|
||||||
new Request('https://api.fxtwitter.com/usesaahah123', {
|
new Request('https://api.fxtwitter.com/usesaahah123', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: botHeaders
|
headers: botHeaders
|
Loading…
Add table
Reference in a new issue