Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/#190 #197

Closed
wants to merge 15 commits into from
Closed

Feature/#190 #197

wants to merge 15 commits into from

Conversation

AsukaNamiki
Copy link
Collaborator

概要

bouquet GETのAPIを作成しました。

変更点

このセクションでは、具体的な変更点や修正箇所を箇条書きでリストアップしてください。

  • 花束保存用のS3バケットを作成
  • 日付とuser-idから対応する週の花束画像を取得するLambda関数を作成
  • 上記Lambdaを呼び出すためのエンドポイントを作成

影響範囲

S3バケットのプレフィックス構成がbouquet PUT(花束画像の保存)に影響します。
cognito-user-id/YYYY-MM.pngのオブジェクト名で保存されていないと取得する事ができません。

テスト

このセクションでは、この PR に関連するテストケースやテスト方法を記載してください。

  • テストケース1 Lambdaの単体テスト
    対応する以下のテストイベントを作成します。
    {
    "requestContext": {
    "authorizer": {
    "claims": {
    "sub": "<CognitoユーザID>"
    }
    }
    },
    "queryStringParameters": {
    "date": "<適当な日付>"
    }
    }
    日付の週に対応した花束の画像が事前にアップロード済みであれば、base64エンコードされた画像がレスポンスされます。
  • テストケース2 APIテスト
    エンドポイントURLとCoognito IDトークンを取得して、以下のコマンドを実行します。テストケース1と同様ののレスポンスが得られれば成功です。
    curl -X GET "{エンドポイントURL}/bouquet?date=2024-01-01"
    -H "Authorization: Bearer {取得したトークン}"

関連 Issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

指定した年月週の花束画像の取得(bouquet GET)を実装
2 participants