Cloud Functions 殼層提供互動式殼層,可用於叫用含有測試資料的函式。殼層支援所有觸發事件類型。
設定管理員憑證 (選用)
如果想讓函式測試透過 Firebase Admin SDK 與 Google API 或其他 Firebase API 互動,您可能需要設定管理員憑證。
- Cloud Firestore 和 Realtime Database 觸發條件已有足夠的憑證,且「不需要」進行額外設定。
- 所有其他 API (包括 Authentication 和 FCM 等 Firebase API,或 Cloud Translation 或 Cloud Speech 等 Google API) 都需要執行本節所述的設定步驟。無論您使用 Cloud Functions 殼層還是
firebase emulators:start
,這項規則都適用。
如何為模擬函式設定管理員憑證:
- 開啟 Google Cloud 主控台的「Service Accounts」窗格。
- 確認已選取 App Engine 預設服務帳戶,然後使用右側的選項選單選取「Create key」(建立金鑰)。
- 系統提示時,請選取「JSON」做為金鑰類型,然後按一下「建立」。
將 Google 的預設憑證指向下載的金鑰:
Unix
export GOOGLE_APPLICATION_CREDENTIALS="path/to/key.json" firebase functions:shell
Windows
set GOOGLE_APPLICATION_CREDENTIALS=path\to\key.json firebase functions:shell
完成上述步驟後,函式測試即可透過 Admin SDK 存取 Firebase 和 Google API。舉例來說,測試 Authentication 觸發條件時,模擬函式可以呼叫 admin.auth().getUserByEmail(email)
。
使用 Cloud Functions 殼層提供函式
Cloud Functions 殼層會使用互動式殼層模擬所有類型的函式觸發事件,以便使用測試資料叫用函式。選項會因函式類型而異,但基本使用格式如下:
myFunctionName(data, options)
data
參數是 Realtime Database、Cloud Firestore 和 Pub/Sub 觸發事件的必要參數,其他函式類型則可選擇使用。此外,選用的 options
參數僅適用於 Realtime Database 和 Cloud Firestore 函式。
您也可以選擇從本機檔案載入測試資料,方法是將檔案儲存為變數,然後使用該變數叫用函式:
var data = require('./path/to/testData.json');
myFunction(data);
安裝及設定 Cloud Functions 殼層
如要使用這項功能,firebase-tools
必須為 3.11.0 以上版本,firebase-functions
SDK 則必須為 0.6.2 以上版本。如要同時更新這兩項,請在專案的 functions/
目錄中執行下列指令:
npm install --save firebase-functions@latest
npm install -g firebase-tools
如果您使用自訂函式設定變數,請先在本機環境中執行下列指令,取得自訂設定 (請在 functions
目錄中執行此指令):
firebase functions:config:get > .runtimeconfig.json # If using Windows PowerShell, replace the above with: # firebase functions:config:get | ac .runtimeconfig.json
最後,請使用下列指令執行殼層:
firebase functions:shell
叫用 HTTPS 函式
如要在殼層中叫用 HTTPS 函式,使用與 request
NPM 模組相同,但請將 request
替換成您要模擬的函式名稱。例如:
# invoke
myHttpsFunction()
myHttpsFunction.get()
myHttpsFunction.post()
# invoke at sub-path
myHttpsFunction('/path')
myHttpsFunction.get('/path')
myHttpsFunction.post('/path')
# send POST request with form data
myHttpsFunction.post('/path').form( {foo: 'bar' })
叫用 HTTPS 可呼叫函式
在本機叫用 HTTPS 呼叫函式時,您必須提供適當的測試資料。
# invoke
myCallableFunction('test data')
myCallableFunction({'foo': 'bar'})
您可以選擇將 Firebase-Instance-ID-token
傳入做為第二個參數。此值必須是字串。
# invoke with FCM registration token
myCallableFunction('test data', {instanceIdToken: 'sample token'})
目前無法模擬「context.auth
」。
叫用即時資料庫函式
在本機執行即時資料庫函式時,您需要提供適當的測試資料。這通常表示您需要為 onCreate
作業提供新測試資料,為 onDelete
作業提供舊資料/已移除資料,以及為 onUpdate
或 onWrite
函式提供兩者:
# invoke onCreate function
myDatabaseFunction('new_data')
# invoke onDelete function
myDatabaseFunction('old_data')
# invoke onUpdate or onWrite function
myDatabaseFunction({before: 'old_data', after: 'new_data' })
除了 before/after
選項之外,殼層還提供 params
選項,可用於模擬路徑中的萬用字元:
# mock wildcards in path, for example: if the path was input/{group}/{id}
myDatabaseFunction('data', {params: {group: 'a', id: 123}})
根據預設,殼層會以管理員 (服務帳戶) 權限執行 Realtime Database 函式。請改用 auth
選項,以特定使用者或未驗證使用者的身分執行函式:
# to mock unauthenticated user
myDatabaseFunction('data', {authMode: 'USER'})
# to mock end user
myDatabaseFunction('data', {auth: {uid: 'abcd'}})
叫用 Firestore 函式
在本機執行 Firestore 函式時,您必須提供適當的測試資料。這通常表示您需要為 onCreate
作業提供新的測試資料,為 onDelete
作業提供舊資料/已移除的資料,以及為 onUpdate
或 onWrite
函式提供這兩種資料。請注意,Firestore 資料必須是鍵/值組合,請參閱「支援的資料類型」。
# invoke onCreate function
myFirestoreFunction({foo: ‘new’})
# invoke onDelete function
myFirestoreFunction({foo: ‘old’})
# invoke onUpdate or onWrite function
myFirestoreFunction({before: {foo: ‘old’}, after: {foo: ‘new’} })
除了 data
物件的 before/after
欄位之外,您也可以使用 options
物件的 params
欄位,模擬文件名稱中的萬用字元:
# mock wildcards in document name, for example: if the name was input/{group}/{id}
myFirestoreFunction({foo: ‘new’}, {params: {group: 'a', id: 123}})
殼層一律會以管理員權限執行 Firestore 函式,也就是說,它會模擬建立/更新/刪除事件,就好像是由管理員使用者執行一樣。
叫用 Pub/Sub 函式
針對 Pub/Sub 函式,請在 Buffer
例項中插入訊息酬載,並視需要新增資料屬性,如下所示:
// invokes a function with the JSON message { hello: 'world' } and attributes { foo: 'bar' }
myPubsubFunction({data: new Buffer('{"hello":"world"}'), attributes: {foo: 'bar'}})
叫用 Analytics 函式
您可以在殼層中執行 myAnalyticsFunction()
,呼叫 Analytics 函式,而不需要任何資料。如要使用測試資料執行函式,建議您為函式所需的特定事件資料欄位定義變數:
var data = {
eventDim: [{
// populates event.data.params
params: {foo: {stringValue: 'bar'} },
// Also valid:
// {intValue: '10'}, {floatValue: '1.0'}, {doubleValue: '1.0'}
// populates event.data.name
name: 'event_name',
// populates event.data.logTime, specify in microseconds
timestampMicros: Date.now() * 1000,
// populates event.data.previousLogTime, specify in microseconds
previousTimestampMicros: Date.now() * 1000,
// populates event.data.reportingDate, specify in 'YYYYMMDD' format
date: '20170930',
// populates event.data.valueInUSD
valueInUsd: 230
}],
userDim: userDim
};
myAnalyticsFunction(data);
叫用儲存空間和驗證函式
針對儲存和驗證函式,請使用您想在函式中看到的測試資料叫用本機函式。測試資料必須遵循對應的資料格式:
- 針對 Cloud Storage:
ObjectMetadata
- 針對 Authentication:
UserRecord
只指定程式碼依附的欄位,如果只想執行函式,則不指定任何欄位。