Skip to content

Commit ea00939

Browse files
matttaron
andauthored
Add integration test for Bun (#220)
* Add integration test for Bun * Remove comments in tsconfig.json * Remove typescript dependency from package.json * Run tests with bun test * Trim down .gitignore * Update bun.lockb * Remove test script from package.json altogether * Remove @types/node dependency * Build and install tarball for Bun integration test * Update tsconfig.json Co-authored-by: Aron Carroll <[email protected]> --------- Co-authored-by: Aron Carroll <[email protected]>
1 parent 20983bc commit ea00939

File tree

8 files changed

+136
-5
lines changed

8 files changed

+136
-5
lines changed

.github/workflows/ci.yml

+63-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [18.x, 20.x]
1615
# See supported Node.js release schedule at https://nodejs.org/en/about/previous-releases
16+
node-version: [18.x, 20.x]
1717

1818
steps:
1919
- uses: actions/checkout@v3
@@ -27,23 +27,51 @@ jobs:
2727
- run: npm run check
2828
- run: npm run lint
2929

30-
integration:
30+
31+
integration-node:
3132
needs: test
3233
runs-on: ubuntu-latest
3334

35+
env:
36+
REPLICATE_API_TOKEN: ${{ secrets.REPLICATE_API_TOKEN }}
37+
3438
strategy:
3539
matrix:
3640
# See supported Node.js release schedule at https://nodejs.org/en/about/previous-releases
3741
node-version: [18.x, 20.x]
38-
suite: [commonjs, esm, typescript, cloudflare-worker]
42+
suite: [commonjs, esm, typescript]
3943
exclude:
4044
- suite: cloudflare-worker
4145
node-version: 18.x # Only test Cloudflare suite with the latest Node version
4246
fail-fast: false
4347

48+
steps:
49+
- uses: actions/checkout@v3
50+
- name: Use Node.js ${{ matrix.node-version }}
51+
uses: actions/setup-node@v3
52+
with:
53+
node-version: ${{ matrix.node-version }}
54+
cache: "npm"
55+
# Build a production tarball and run the integration tests against it.
56+
- run: |
57+
PKG_TARBALL=$(npm --loglevel error pack)
58+
npm --prefix integration/${{ matrix.suite }} install
59+
npm --prefix integration/${{ matrix.suite }} install "file:/./$PKG_TARBALL"
60+
npm --prefix integration/${{ matrix.suite }} test
61+
62+
63+
integration-edge:
64+
needs: test
65+
runs-on: ubuntu-latest
66+
4467
env:
4568
REPLICATE_API_TOKEN: ${{ secrets.REPLICATE_API_TOKEN }}
4669

70+
strategy:
71+
matrix:
72+
node-version: [20.x]
73+
suite: [cloudflare-worker]
74+
4775
steps:
4876
- uses: actions/checkout@v3
4977
- name: Use Node.js ${{ matrix.node-version }}
@@ -58,3 +86,35 @@ jobs:
5886
npm --prefix integration/${{ matrix.suite }} install
5987
npm --prefix integration/${{ matrix.suite }} install "file:/./$PKG_TARBALL"
6088
npm --prefix integration/${{ matrix.suite }} test
89+
90+
91+
integration-bun:
92+
needs: test
93+
runs-on: ubuntu-latest
94+
95+
env:
96+
REPLICATE_API_TOKEN: ${{ secrets.REPLICATE_API_TOKEN }}
97+
98+
strategy:
99+
matrix:
100+
bun-version: [1.0.11]
101+
node-version: [20.x]
102+
suite: [bun]
103+
104+
steps:
105+
- uses: actions/checkout@v3
106+
- name: Use Node.js ${{ matrix.node-version }}
107+
uses: actions/setup-node@v3
108+
with:
109+
node-version: ${{ matrix.node-version }}
110+
cache: "npm"
111+
- name: Use Bun ${{ matrix.bun-version }}
112+
uses: oven-sh/setup-bun@v1
113+
with:
114+
bun-version: ${{ matrix.bun-version }}
115+
- run: |
116+
PKG_TARBALL=$(npm --loglevel error pack)
117+
cd integration/${{ matrix.suite }}
118+
bun uninstall replicate
119+
bun install "file:../../$PKG_TARBALL"
120+
bun test

integration/bun/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

integration/bun/bun.lockb

162 KB
Binary file not shown.

integration/bun/index.test.ts

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { expect, test } from "bun:test";
2+
import main from "./index.js";
3+
4+
// Verify exported types.
5+
import type {
6+
Status,
7+
Visibility,
8+
WebhookEventType,
9+
ApiError,
10+
Collection,
11+
Hardware,
12+
Model,
13+
ModelVersion,
14+
Prediction,
15+
Training,
16+
Page,
17+
ServerSentEvent,
18+
} from "replicate";
19+
20+
test("main", async () => {
21+
const output = await main();
22+
expect(output as any).toEqual("hello Brünnhilde Bun");
23+
});

integration/bun/index.ts

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import Replicate from "replicate";
2+
3+
const replicate = new Replicate({
4+
auth: process.env.REPLICATE_API_TOKEN,
5+
});
6+
7+
export default async function main() {
8+
return await replicate.run(
9+
"replicate/hello-world:5c7d5dc6dd8bf75c1acaa8565735e7986bc5b66206b55cca93cb72c9bf15ccaa",
10+
{
11+
input: {
12+
text: "Brünnhilde Bun",
13+
},
14+
}
15+
);
16+
}

integration/bun/package.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "replicate-app-bun",
3+
"version": "0.0.0",
4+
"private": true,
5+
"description": "Bun integration tests",
6+
"main": "index.js",
7+
"type": "module",
8+
"dependencies": {
9+
"replicate": "file:../../"
10+
},
11+
"devDependencies": {
12+
"@types/bun": "latest"
13+
}
14+
}

integration/bun/tsconfig.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es2018",
4+
"module": "nodenext",
5+
"inlineSourceMap": true,
6+
"outDir": "./dist",
7+
"esModuleInterop": true,
8+
"forceConsistentCasingInFileNames": true,
9+
"strict": true,
10+
"noImplicitAny": true,
11+
"strictNullChecks": true,
12+
"skipDefaultLibCheck": true,
13+
"skipLibCheck": true
14+
}
15+
}

tsconfig.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
"allowJs": true
77
},
88
"exclude": [
9-
"**/node_modules"
9+
"**/node_modules",
10+
"integration/**"
1011
]
11-
}
12+
}
13+

0 commit comments

Comments
 (0)