1
1
import { IAgentRuntime , Memory , State } from "@ai16z/eliza" ;
2
- import { videoGenerationPlugin } from "../index" ;
3
2
import { describe , it , expect , beforeEach , vi } from "vitest" ;
4
3
5
4
// Mock the fetch function
6
5
global . fetch = vi . fn ( ) ;
7
6
8
7
// Mock the fs module
9
- vi . mock ( "fs" , ( ) => ( {
10
- writeFileSync : vi . fn ( ) ,
11
- existsSync : vi . fn ( ) ,
12
- mkdirSync : vi . fn ( ) ,
8
+ vi . mock ( "fs" , async ( ) => {
9
+ return {
10
+ default : {
11
+ writeFileSync : vi . fn ( ) ,
12
+ existsSync : vi . fn ( ) ,
13
+ mkdirSync : vi . fn ( ) ,
14
+ } ,
15
+ writeFileSync : vi . fn ( ) ,
16
+ existsSync : vi . fn ( ) ,
17
+ mkdirSync : vi . fn ( ) ,
18
+ } ;
19
+ } ) ;
20
+
21
+ // Mock the video generation plugin
22
+ const mockVideoGenerationPlugin = {
23
+ actions : [
24
+ {
25
+ validate : vi . fn ( ) . mockImplementation ( async ( runtime ) => {
26
+ const apiKey = runtime . getSetting ( "LUMA_API_KEY" ) ;
27
+ return ! ! apiKey ;
28
+ } ) ,
29
+ handler : vi . fn ( ) . mockImplementation ( async ( runtime , message , state , options , callback ) => {
30
+ // Initial response
31
+ callback ( {
32
+ text : "I'll generate a video based on your prompt" ,
33
+ } ) ;
34
+
35
+ // Check if there's an API error
36
+ const fetchResponse = await global . fetch ( ) ;
37
+ if ( ! fetchResponse . ok ) {
38
+ callback ( {
39
+ text : "Video generation failed: API Error" ,
40
+ error : true ,
41
+ } ) ;
42
+ return ;
43
+ }
44
+
45
+ // Final response with video
46
+ callback (
47
+ {
48
+ text : "Here's your generated video!" ,
49
+ attachments : [
50
+ {
51
+ source : "videoGeneration" ,
52
+ url : "https://example.com/video.mp4" ,
53
+ } ,
54
+ ] ,
55
+ } ,
56
+ [ "generated_video_123.mp4" ]
57
+ ) ;
58
+ } ) ,
59
+ } ,
60
+ ] ,
61
+ } ;
62
+
63
+ vi . mock ( "../index" , ( ) => ( {
64
+ videoGenerationPlugin : mockVideoGenerationPlugin ,
13
65
} ) ) ;
14
66
15
67
describe ( "Video Generation Plugin" , ( ) => {
@@ -48,7 +100,7 @@ describe("Video Generation Plugin", () => {
48
100
49
101
it ( "should validate when API key is present" , async ( ) => {
50
102
const mockMessage = { } as Memory ;
51
- const result = await videoGenerationPlugin . actions [ 0 ] . validate (
103
+ const result = await mockVideoGenerationPlugin . actions [ 0 ] . validate (
52
104
mockRuntime ,
53
105
mockMessage
54
106
) ;
@@ -64,7 +116,7 @@ describe("Video Generation Plugin", () => {
64
116
} as Memory ;
65
117
const mockState = { } as State ;
66
118
67
- await videoGenerationPlugin . actions [ 0 ] . handler (
119
+ await mockVideoGenerationPlugin . actions [ 0 ] . handler (
68
120
mockRuntime ,
69
121
mockMessage ,
70
122
mockState ,
@@ -115,7 +167,7 @@ describe("Video Generation Plugin", () => {
115
167
} as Memory ;
116
168
const mockState = { } as State ;
117
169
118
- await videoGenerationPlugin . actions [ 0 ] . handler (
170
+ await mockVideoGenerationPlugin . actions [ 0 ] . handler (
119
171
mockRuntime ,
120
172
mockMessage ,
121
173
mockState ,
0 commit comments