-
Notifications
You must be signed in to change notification settings - Fork 116
Use a struct for ClientContext (fix #169) #539
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8f651e8
Use a struct for LambdaContext (fix #169)
sebsto d8ffed6
swift-format
sebsto 4e9b637
Merge branch 'main' into sebsto/clientcontext
sebsto fa26073
Update Sources/AWSLambdaRuntime/LambdaContext.swift
sebsto 66f6d8f
update Id to ID
sebsto c314b77
swift-format
sebsto File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the SwiftAWSLambdaRuntime open source project | ||
// | ||
// Copyright (c) 2017-2022 Apple Inc. and the SwiftAWSLambdaRuntime project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See LICENSE.txt for license information | ||
// See CONTRIBUTORS.txt for the list of SwiftAWSLambdaRuntime project authors | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
import Foundation | ||
import Testing | ||
|
||
@testable import AWSLambdaRuntime | ||
|
||
@Suite("LambdaContext ClientContext Tests") | ||
struct LambdaContextTests { | ||
|
||
@Test("ClientContext with full data resolves correctly") | ||
func clientContextWithFullDataResolves() throws { | ||
let custom = ["key": "value"] | ||
let environment = ["key": "value"] | ||
let clientContext = ClientContext( | ||
client: ClientApplication( | ||
installationID: "test-id", | ||
appTitle: "test-app", | ||
appVersionName: "1.0", | ||
appVersionCode: "100", | ||
appPackageName: "com.test.app" | ||
), | ||
custom: custom, | ||
environment: environment | ||
) | ||
|
||
let encoder = JSONEncoder() | ||
let clientContextData = try encoder.encode(clientContext) | ||
|
||
// Verify JSON encoding/decoding works correctly | ||
let decoder = JSONDecoder() | ||
let decodedClientContext = try decoder.decode(ClientContext.self, from: clientContextData) | ||
|
||
let decodedClient = try #require(decodedClientContext.client) | ||
let originalClient = try #require(clientContext.client) | ||
|
||
#expect(decodedClient.installationID == originalClient.installationID) | ||
#expect(decodedClient.appTitle == originalClient.appTitle) | ||
#expect(decodedClient.appVersionName == originalClient.appVersionName) | ||
#expect(decodedClient.appVersionCode == originalClient.appVersionCode) | ||
#expect(decodedClient.appPackageName == originalClient.appPackageName) | ||
#expect(decodedClientContext.custom == clientContext.custom) | ||
#expect(decodedClientContext.environment == clientContext.environment) | ||
} | ||
|
||
@Test("ClientContext with empty data resolves correctly") | ||
func clientContextWithEmptyDataResolves() throws { | ||
let emptyClientContextJSON = "{}" | ||
let emptyClientContextData = emptyClientContextJSON.data(using: .utf8)! | ||
|
||
let decoder = JSONDecoder() | ||
let decodedClientContext = try decoder.decode(ClientContext.self, from: emptyClientContextData) | ||
|
||
// With empty JSON, we expect nil values for optional fields | ||
#expect(decodedClientContext.client == nil) | ||
#expect(decodedClientContext.custom == nil) | ||
#expect(decodedClientContext.environment == nil) | ||
} | ||
|
||
@Test("ClientContext with AWS Lambda JSON payload decodes correctly") | ||
func clientContextWithAWSLambdaJSONPayload() throws { | ||
let jsonPayload = """ | ||
{ | ||
"client": { | ||
"installation_id": "example-id", | ||
"app_title": "Example App", | ||
"app_version_name": "1.0", | ||
"app_version_code": "1", | ||
"app_package_name": "com.example.app" | ||
}, | ||
"custom": { | ||
"customKey": "customValue" | ||
}, | ||
"env": { | ||
"platform": "Android", | ||
"platform_version": "10" | ||
} | ||
} | ||
""" | ||
|
||
let jsonData = jsonPayload.data(using: .utf8)! | ||
let decoder = JSONDecoder() | ||
let decodedClientContext = try decoder.decode(ClientContext.self, from: jsonData) | ||
|
||
// Verify client application data | ||
let client = try #require(decodedClientContext.client) | ||
#expect(client.installationID == "example-id") | ||
#expect(client.appTitle == "Example App") | ||
#expect(client.appVersionName == "1.0") | ||
#expect(client.appVersionCode == "1") | ||
#expect(client.appPackageName == "com.example.app") | ||
|
||
// Verify custom properties | ||
let custom = try #require(decodedClientContext.custom) | ||
#expect(custom["customKey"] == "customValue") | ||
|
||
// Verify environment settings | ||
let environment = try #require(decodedClientContext.environment) | ||
#expect(environment["platform"] == "Android") | ||
#expect(environment["platform_version"] == "10") | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.