-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathtest_eventarc_fn.py
119 lines (101 loc) · 4.09 KB
/
test_eventarc_fn.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# Copyright 2022 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Eventarc trigger function tests."""
import unittest
from unittest.mock import Mock
from cloudevents.http import CloudEvent as _CloudEvent
from firebase_functions import core
from firebase_functions.core import CloudEvent
from firebase_functions.eventarc_fn import on_custom_event_published
class TestEventarcFn(unittest.TestCase):
"""
Test Eventarc trigger functions.
"""
def test_on_custom_event_published_decorator(self):
"""
Tests the on_custom_event_published decorator functionality by checking
that the __firebase_endpoint__ attribute is set properly.
"""
func = Mock(__name__="example_func")
decorated_func = on_custom_event_published(
event_type="firebase.extensions.storage-resize-images.v1.complete",
)(func)
endpoint = getattr(decorated_func, "__firebase_endpoint__")
self.assertIsNotNone(endpoint)
self.assertIsNotNone(endpoint.eventTrigger)
self.assertEqual(
endpoint.eventTrigger["eventType"],
"firebase.extensions.storage-resize-images.v1.complete",
)
def test_on_custom_event_published_wrapped(self):
"""
Tests the wrapped function created by the on_custom_event_published
decorator, ensuring that it correctly processes the raw event and calls
the user-provided function with a properly formatted CloudEvent instance.
"""
func = Mock(__name__="example_func")
raw_event = _CloudEvent(
attributes={
"specversion": "1.0",
"type": "firebase.extensions.storage-resize-images.v1.complete",
"source": "https://example.com/testevent",
"id": "1234567890",
"subject": "test_subject",
"time": "2023-03-11T13:25:37.403Z",
},
data={
"some_key": "some_value",
},
)
decorated_func = on_custom_event_published(
event_type="firebase.extensions.storage-resize-images.v1.complete",
)(func)
decorated_func(raw_event)
func.assert_called_once()
event_arg = func.call_args.args[0]
self.assertIsInstance(event_arg, CloudEvent)
self.assertEqual(event_arg.data, {"some_key": "some_value"})
self.assertEqual(event_arg.id, "1234567890")
self.assertEqual(event_arg.source, "https://example.com/testevent")
self.assertEqual(event_arg.specversion, "1.0")
self.assertEqual(event_arg.subject, "test_subject")
self.assertEqual(
event_arg.type,
"firebase.extensions.storage-resize-images.v1.complete",
)
def test_calls_init_function(self):
hello = None
@core.init
def init():
nonlocal hello
hello = "world"
func = Mock(__name__="example_func")
raw_event = _CloudEvent(
attributes={
"specversion": "1.0",
"type": "firebase.extensions.storage-resize-images.v1.complete",
"source": "https://example.com/testevent",
"id": "1234567890",
"subject": "test_subject",
"time": "2023-03-11T13:25:37.403Z",
},
data={
"some_key": "some_value",
},
)
decorated_func = on_custom_event_published(
event_type="firebase.extensions.storage-resize-images.v1.complete",
)(func)
decorated_func(raw_event)
self.assertEqual(hello, "world")