@@ -5,6 +5,10 @@ import {
5
5
} from '../../../types/index' ;
6
6
import { SourcePostTransformationService } from '../../source/postTransformation' ;
7
7
8
+ const headers = {
9
+ 'x-rudderstack-source' : 'test' ,
10
+ } ;
11
+
8
12
describe ( 'Source PostTransformation Service' , ( ) => {
9
13
test ( 'should handleFailureEventsSource' , async ( ) => {
10
14
const e = new Error ( 'test error' ) ;
@@ -26,24 +30,32 @@ describe('Source PostTransformation Service', () => {
26
30
output : { batch : [ { anonymousId : 'test' } ] } ,
27
31
} as SourceTransformationResponse ;
28
32
29
- const result = SourcePostTransformationService . handleSuccessEventsSource ( event ) ;
33
+ const postProcessedEvents = {
34
+ outputToSource : { } ,
35
+ output : { batch : [ { anonymousId : 'test' , context : { headers } } ] } ,
36
+ } as SourceTransformationResponse ;
30
37
31
- expect ( result ) . toEqual ( event ) ;
38
+ const result = SourcePostTransformationService . handleSuccessEventsSource ( event , { headers } ) ;
39
+
40
+ expect ( result ) . toEqual ( postProcessedEvents ) ;
32
41
} ) ;
33
42
34
43
test ( 'should return the events as batch in SourceTransformationResponse if it is an array' , ( ) => {
44
+ const headers = {
45
+ 'x-rudderstack-source' : 'test' ,
46
+ } ;
35
47
const events = [ { anonymousId : 'test' } , { anonymousId : 'test' } ] as RudderMessage [ ] ;
48
+ const postProcessedEvents = events . map ( ( event ) => ( { ...event , context : { headers } } ) ) ;
49
+ const result = SourcePostTransformationService . handleSuccessEventsSource ( events , { headers } ) ;
36
50
37
- const result = SourcePostTransformationService . handleSuccessEventsSource ( events ) ;
38
-
39
- expect ( result ) . toEqual ( { output : { batch : events } } ) ;
51
+ expect ( result ) . toEqual ( { output : { batch : postProcessedEvents } } ) ;
40
52
} ) ;
41
53
42
54
test ( 'should return the event as batch in SourceTransformationResponse if it is a single object' , ( ) => {
43
55
const event = { anonymousId : 'test' } as RudderMessage ;
44
56
45
- const result = SourcePostTransformationService . handleSuccessEventsSource ( event ) ;
57
+ const result = SourcePostTransformationService . handleSuccessEventsSource ( event , { headers } ) ;
46
58
47
- expect ( result ) . toEqual ( { output : { batch : [ event ] } } ) ;
59
+ expect ( result ) . toEqual ( { output : { batch : [ { ... event , context : { headers } } ] } } ) ;
48
60
} ) ;
49
61
} ) ;
0 commit comments