Skip to content

Commit 3eac5b5

Browse files
authored
ci: add scripts to validate that public API has not changed (#152)
* ci: add scripts to validate that public API has not changed * ci: install sourcekitten * ci: setup ssh-agent * ci: add more info on rememdy * ci: add documentation + refactor * ci: add support for ConfidenceProvider in API diff
1 parent 9e49bb0 commit 3eac5b5

8 files changed

+578
-5
lines changed

.github/workflows/ci.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,22 @@ on:
99
- 'main'
1010

1111
jobs:
12+
API-diff:
13+
strategy:
14+
matrix:
15+
module: ["ConfidenceProvider", "Confidence"]
16+
runs-on: macOS-latest
17+
steps:
18+
- name: install sourcekitten
19+
run: brew install sourcekitten
20+
- uses: actions/checkout@v3
21+
- name: webfactory/ssh-agent
22+
uses: webfactory/[email protected]
23+
with:
24+
ssh-private-key: ${{ secrets.SDK_REPO_PRIVATE_KEY }}
25+
- name: Run public API diff
26+
run: scripts/api_diff.sh ${{ matrix.module }}
27+
1228
Tests:
1329
runs-on: macOS-latest
1430
steps:

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ DerivedData/
88
.netrc
99
.build
1010
.mockingbird
11-
project.json
11+
project.json
12+
scripts/raw_api.json

CONTRIBUTING.md

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## Contributing
1+
# Contributing
22

33
Open the project in Xcode and build by Product -> Build.
44

5-
### Linting code
5+
## Linting code
66

77
Code is automatically linted during a build in Xcode. If you need to manually lint:
88

@@ -11,15 +11,25 @@ brew install swiftlint
1111
swiftlint
1212
```
1313

14-
### Formatting code
14+
## Formatting code
1515

1616
You can automatically format your code using:
1717

1818
```shell
1919
./scripts/swift-format
2020
```
2121

22-
### Running tests
22+
## API diffs
23+
We run a script to make sure that we don't make changes to the public API without intending to.
24+
The diff script and the script to generate a new "golden api file" uses a tool called [SourceKitten](https://github.com/jpsim/SourceKitten) which can be installed using homebrew (`brew install sourcekitten`).
25+
26+
### The expected workflow is:
27+
* Write code (that may change the public API).
28+
* Optionally run `./scripts/api_diff.sh` to detect the api change.
29+
* Run `./scripts/generate_public_api.sh` -- this will update the file in `./api`.
30+
* Commit both code and the updated API file in the same commit.
31+
32+
## Running tests
2333

2434
IT tests require a Confidence client token to reach remote servers. The token can be created on the Confidence portal.
2535
The Confidence organization used for IT tests is named `confidence-test` (you may need to request access).
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
[
2+
{
3+
"className": "ConfidenceFeatureProvider",
4+
"apiFunctions": [
5+
{
6+
"name": "init(confidence:initializationStrategy:)",
7+
"declaration": "public convenience init(confidence: Confidence, initializationStrategy: InitializationStrategy = .fetchAndActivate)"
8+
},
9+
{
10+
"name": "initialize(initialContext:)",
11+
"declaration": "public func initialize(initialContext: OpenFeature.EvaluationContext?)"
12+
},
13+
{
14+
"name": "onContextSet(oldContext:newContext:)",
15+
"declaration": "public func onContextSet(\n oldContext: OpenFeature.EvaluationContext?,\n newContext: OpenFeature.EvaluationContext\n)"
16+
},
17+
{
18+
"name": "getBooleanEvaluation(key:defaultValue:context:)",
19+
"declaration": "public func getBooleanEvaluation(key: String, defaultValue: Bool, context: EvaluationContext?) throws\n-> OpenFeature.ProviderEvaluation<Bool>"
20+
},
21+
{
22+
"name": "getStringEvaluation(key:defaultValue:context:)",
23+
"declaration": "public func getStringEvaluation(key: String, defaultValue: String, context: EvaluationContext?) throws\n-> OpenFeature.ProviderEvaluation<String>"
24+
},
25+
{
26+
"name": "getIntegerEvaluation(key:defaultValue:context:)",
27+
"declaration": "public func getIntegerEvaluation(key: String, defaultValue: Int64, context: EvaluationContext?) throws\n-> OpenFeature.ProviderEvaluation<Int64>"
28+
},
29+
{
30+
"name": "getDoubleEvaluation(key:defaultValue:context:)",
31+
"declaration": "public func getDoubleEvaluation(key: String, defaultValue: Double, context: EvaluationContext?) throws\n-> OpenFeature.ProviderEvaluation<Double>"
32+
},
33+
{
34+
"name": "getObjectEvaluation(key:defaultValue:context:)",
35+
"declaration": "public func getObjectEvaluation(key: String, defaultValue: OpenFeature.Value, context: EvaluationContext?)\nthrows -> OpenFeature.ProviderEvaluation<OpenFeature.Value>"
36+
},
37+
{
38+
"name": "observe()",
39+
"declaration": "public func observe() -> AnyPublisher<OpenFeature.ProviderEvent, Never>"
40+
}
41+
]
42+
}
43+
]

0 commit comments

Comments
 (0)