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

Ta/diagnosing ci #421

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/actions/ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ runs:
shell: bash
run: pod lib lint LaunchDarkly.podspec --allow-warnings

- name: Run swiftlint
shell: bash
run: |
cd ./ContractTests
swiftlint lint
# - name: Run swiftlint
# shell: bash
# run: |
# cd ./ContractTests
# swiftlint lint

- name: Build for macOS
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
fail-fast: false
matrix:
include:
- xcode-version: 15.0.1
- xcode-version: 15.2
ios-sim: 'platform=iOS Simulator,name=iPhone 15,OS=17.2'
os: macos-13
os: macos-14
run-contract-tests: true
- xcode-version: 14.3.1
ios-sim: 'platform=iOS Simulator,name=iPhone 14,OS=16.4'
Expand Down
6 changes: 2 additions & 4 deletions LaunchDarkly/LaunchDarkly/LDClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -207,17 +207,15 @@ public class LDClient {
os_log("%s runMode aborted. Old runMode equals new runMode", log: config.logger, type: .debug, typeName(and: #function))
return
}

let cachedData = self.flagCache.getCachedData(cacheKey: self.context.fullyQualifiedHashedKey(), contextHash: self.context.contextHash())

let lastUpdated = self.flagCache.getCachedDataLastUpdatedDate(cacheKey: self.context.fullyQualifiedHashedKey(), contextHash: self.context.contextHash())
let willSetSynchronizerOnline = isOnline && isInSupportedRunMode
flagSynchronizer.isOnline = false
let streamingModeVar = ConnectionInformation.effectiveStreamingMode(config: config, ldClient: self)
connectionInformation = ConnectionInformation.backgroundBehavior(connectionInformation: connectionInformation, streamingMode: streamingModeVar, goOnline: willSetSynchronizerOnline)
flagSynchronizer = serviceFactory.makeFlagSynchronizer(streamingMode: streamingModeVar,
pollingInterval: config.flagPollingInterval(runMode: runMode),
useReport: config.useReport,
lastUpdated: cachedData.lastUpdated,
lastUpdated: lastUpdated,
service: service,
onSyncComplete: onFlagSyncComplete)
flagSynchronizer.isOnline = willSetSynchronizerOnline
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ protocol FeatureFlagCaching {
///
///
func getCachedData(cacheKey: String, contextHash: String) -> (items: StoredItems?, etag: String?, lastUpdated: Date?)

/// Retrieve the date the cache for the given key was last updated. See getCachedData for more information.
///
/// - parameter cacheKey: The index key into the local cache store.
/// - parameter contextHash: A hash value representing a fully unique context.
///
/// - returns: The date the cache was last considered up-to-date. If there are no cached
/// values, this should return nil.
func getCachedDataLastUpdatedDate(cacheKey: String, contextHash: String) -> Date?

// When we update the cache, we save the flag data and if we have it, an
// etag. For polling, we should always have the flag data and an etag
Expand Down Expand Up @@ -99,6 +108,19 @@ final class FeatureFlagCache: FeatureFlagCaching {

return (items: cachedFlags.flags, etag: etag, lastUpdated: Date(timeIntervalSince1970: TimeInterval(lastUpdated / 1_000)))
}

func getCachedDataLastUpdatedDate(cacheKey: String, contextHash: String) -> Date? {

var cachedContexts: [String: Int64] = [:]
if let cacheMetadata = keyedValueCache.data(forKey: "cached-contexts") {
cachedContexts = (try? JSONDecoder().decode([String: Int64].self, from: cacheMetadata)) ?? [:]
}

guard let lastUpdated = cachedContexts[cacheKey]
else { return nil }

return Date(timeIntervalSince1970: TimeInterval(lastUpdated / 1_000))
}

func saveCachedData(_ storedItems: StoredItems, cacheKey: String, contextHash: String, lastUpdated: Date, etag: String?) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,4 +178,22 @@ final class FeatureFlagCacheSpec: XCTestCase {
let setMetadata = try JSONDecoder().decode([String: Int64].self, from: mockValueCache.setReceivedArguments!.value)
XCTAssertEqual(setMetadata, [hashedContextKey: now.millisSince1970])
}

func testGetCachedDataLastUpdatedDate() {
let now = Date()
let flagCache = FeatureFlagCache(serviceFactory: ClientServiceFactory(logger: .disabled), mobileKey: "abc", maxCachedContexts: 5)
flagCache.saveCachedData(testFlagCollection.flags, cacheKey: "key", contextHash: "hash", lastUpdated: now, etag: "example-etag")

let lastUpdated = flagCache.getCachedDataLastUpdatedDate(cacheKey: "key", contextHash: "hash")
XCTAssertEqual(lastUpdated!.millisSince1970, now.millisSince1970, accuracy: 1_000)
}

func testGetCachedDataLastUpdatedDateKeyDoesntExist() {
let now = Date()
let flagCache = FeatureFlagCache(serviceFactory: ClientServiceFactory(logger: .disabled), mobileKey: "abc", maxCachedContexts: 5)
flagCache.saveCachedData(testFlagCollection.flags, cacheKey: "key", contextHash: "hash", lastUpdated: now, etag: "example-etag")

let lastUpdated = flagCache.getCachedDataLastUpdatedDate(cacheKey: "bogus", contextHash: "bogusHash")
XCTAssertEqual(lastUpdated, nil)
}
}
Loading