Minimum work to get tests plugged in, still broken

This commit is contained in:
dangered wolf 2023-11-10 03:30:37 -05:00
parent c9704331ad
commit f27a5d4be8
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 18 additions and 16 deletions

View file

@ -11,7 +11,7 @@ import { cacheMiddleware } from './caches';
const noCache = 'max-age=0, no-cache, no-store, must-revalidate';
const app = new Hono<{
export const app = new Hono<{
Bindings: { TwitterProxy: Fetcher; AnalyticsEngine: AnalyticsEngineDataset };
}>({
getPath: req => {
@ -80,7 +80,9 @@ const customLogger = (message: string, ...rest: string[]) => {
app.use('*', logger(customLogger));
app.use('*', async (c, next) => {
console.log(`Hello from ⛅ ${c.req.raw.cf?.colo || 'UNK'}`);
if (c.req.raw.cf) {
console.log(`Hello from ⛅ ${c.req.raw.cf.colo || 'UNK'}`);
}
console.log('userAgent', c.req.header('user-agent'));
await next();
});
@ -115,4 +117,4 @@ export default {
});
}
}
};
};

View file

@ -1,4 +1,4 @@
import { cacheWrapper } from '../src/worker';
import { app } from '../src/worker';
const botHeaders = { 'User-Agent': 'Discordbot/2.0' };
const humanHeaders = {
@ -29,13 +29,13 @@ if (!globalThis.performance.now) {
}
test('Home page redirect', async () => {
const result = await cacheWrapper(
const result = await app.fetch(
new Request('https://fxtwitter.com', {
method: 'GET',
headers: botHeaders
})
);
const resultHuman = await cacheWrapper(
const resultHuman = await app.fetch(
new Request('https://fxtwitter.com', {
method: 'GET',
headers: humanHeaders
@ -48,7 +48,7 @@ test('Home page redirect', async () => {
});
test('Tweet redirect human', async () => {
const result = await cacheWrapper(
const result = await app.fetch(
new Request('https://fxtwitter.com/jack/status/20', {
method: 'GET',
headers: humanHeaders
@ -59,7 +59,7 @@ test('Tweet redirect human', async () => {
});
test('Tweet redirect human custom base redirect', async () => {
const result = await cacheWrapper(
const result = await app.fetch(
new Request('https://fxtwitter.com/jack/status/20', {
method: 'GET',
headers: {
@ -73,7 +73,7 @@ test('Tweet redirect human custom base redirect', async () => {
});
test('Twitter moment redirect', async () => {
const result = await cacheWrapper(
const result = await app.fetch(
new Request(
'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 () => {
const result = await cacheWrapper(
const result = await app.fetch(
new Request('https://fxtwitter.com/jack/status/20', {
method: 'GET',
headers: botHeaders
@ -97,7 +97,7 @@ test('Tweet response robot', async () => {
});
test('API fetch basic Tweet', async () => {
const result = await cacheWrapper(
const result = await app.fetch(
new Request('https://api.fxtwitter.com/status/20', {
method: 'GET',
headers: botHeaders
@ -132,7 +132,7 @@ test('API fetch basic Tweet', async () => {
});
// test('API fetch video Tweet', async () => {
// const result = await cacheWrapper(
// const result = await app.fetch(
// new Request('https://api.fxtwitter.com/X/status/854416760933556224', {
// method: 'GET',
// headers: botHeaders
@ -177,7 +177,7 @@ test('API fetch basic Tweet', async () => {
// });
// test('API fetch multi-photo Tweet', async () => {
// const result = await cacheWrapper(
// const result = await app.fetch(
// new Request('https://api.fxtwitter.com/Twitter/status/1445094085593866246', {
// method: 'GET',
// headers: botHeaders
@ -224,7 +224,7 @@ test('API fetch basic Tweet', async () => {
// });
// test('API fetch poll Tweet', async () => {
// const result = await cacheWrapper(
// const result = await app.fetch(
// new Request('https://api.fxtwitter.com/status/1055475950543167488', {
// method: 'GET',
// headers: botHeaders
@ -273,7 +273,7 @@ test('API fetch basic Tweet', async () => {
// });
test('API fetch user', async () => {
const result = await cacheWrapper(
const result = await app.fetch(
new Request('https://api.fxtwitter.com/x', {
method: 'GET',
headers: botHeaders
@ -303,7 +303,7 @@ test('API fetch user', async () => {
});
test('API fetch user that does not exist', async () => {
const result = await cacheWrapper(
const result = await app.fetch(
new Request('https://api.fxtwitter.com/usesaahah123', {
method: 'GET',
headers: botHeaders