本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
使用 進行測試的簡介 sam local start-lambda
使用 AWS SAM CLI 子命令sam local start-lambda
透過 AWS CLI 和 叫用 Lambda 函數SDKs。此命令會啟動模擬 Lambda 的本機端點。
-
如需 的簡介 AWS SAM CLI,請參閱 什麼是 AWS SAM CLI?
-
如需
sam local start-lambda
命令選項的清單,請參閱 sam local start-lambda。
若要使用 sam local start-lambda
,請安裝 AWS SAM CLI 完成下列操作:
在使用 之前sam local start-lambda
,我們建議對以下內容有基本的了解:
使用 sam 本機 start-lambda
當您執行 時sam local start-lambda
, AWS SAM CLI 假設您目前的工作目錄是專案的根目錄。的 AWS SAM CLI 會先尋找.aws-sam
子資料夾內的template.[yaml|yml]
檔案。如果找不到 ,則 AWS SAM CLI 會在您目前的工作目錄中尋找template.[yaml|yml]
檔案。
使用 sam local start-lambda
-
從專案的根目錄中,執行下列動作:
$
sam local start-lambda
<options>
-
的 AWS SAM CLI 在本機 中建置 Lambda 函數 Docker 容器。然後,它會輸出本機地址到您的HTTP伺服器端點。以下是範例:
$
sam local start-lambda
Initializing the lambda functions containers. Local image is up-to-date Using local image: public.ecr.aws/lambda/python:3.9-rapid-x86_64. Mounting /Users/.../sam-app/hello_world as /var/task:ro,delegated, inside runtime container Containers Initialization is done. Starting the Local Lambda Service. You can now invoke your Lambda Functions defined in your template through the endpoint. 2023-04-13 07:25:43 WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. * Running on http://127.0.0.1:3001 2023-04-13 07:25:43 Press CTRL+C to quit -
使用 AWS CLI 或 SDKs 在本機叫用 Lambda 函數。
以下是使用 的範例 AWS CLI:
$
aws lambda invoke --function-name
StatusCode: 200 (END)"HelloWorldFunction"
--endpoint-url"http://127.0.0.1:3001"
--no-verify-ssl out.txt以下是使用 的範例 AWS SDK for Python:
import boto3 from botocore.config import Config from botocore import UNSIGNED lambda_client = boto3.client('lambda', endpoint_url="http://127.0.0.1:3001", use_ssl=False, verify=False, config=Config(signature_version=UNSIGNED, read_timeout=1, retries={'max_attempts': 0} ) ) lambda_client.invoke(FunctionName="HelloWorldFunction")
選項
指定範本
為 指定範本 AWS SAM CLI 若要參考,請使用 --template
選項。的 AWS SAM CLI 只會載入該 AWS SAM 範本及其指向的資源。以下是範例:
$
sam local start-lambda --template
myTemplate.yaml
最佳實務
如果您的應用程式具有執行 的.aws-sam
目錄sam build
,請務必sam build
在每次更新函數程式碼時執行 。然後,執行 sam local start-lambda
以本機測試您更新的函數程式碼。
本機測試是部署至雲端之前快速開發和測試的絕佳解決方案。不過,本機測試不會驗證所有項目,例如雲端中資源之間的許可。盡可能在雲端測試您的應用程式。建議使用 sam sync 來加速雲端測試工作流程。
進一步了解
如需所有sam local start-lambda
選項的清單,請參閱 sam local start-lambda。