odsbox-diff 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odsbox_diff-1.0.0/LICENSE +200 -0
- odsbox_diff-1.0.0/PKG-INFO +274 -0
- odsbox_diff-1.0.0/README.md +247 -0
- odsbox_diff-1.0.0/pyproject.toml +75 -0
- odsbox_diff-1.0.0/src/odsbox_diff/__init__.py +32 -0
- odsbox_diff-1.0.0/src/odsbox_diff/__main__.py +5 -0
- odsbox_diff-1.0.0/src/odsbox_diff/api.py +245 -0
- odsbox_diff-1.0.0/src/odsbox_diff/connection/__init__.py +14 -0
- odsbox_diff-1.0.0/src/odsbox_diff/connection/config.py +96 -0
- odsbox_diff-1.0.0/src/odsbox_diff/connection/factory.py +52 -0
- odsbox_diff-1.0.0/src/odsbox_diff/connection/manager.py +150 -0
- odsbox_diff-1.0.0/src/odsbox_diff/diff.py +676 -0
- odsbox_diff-1.0.0/src/odsbox_diff/ods_diff_hierarchy/__init__.py +16 -0
- odsbox_diff-1.0.0/src/odsbox_diff/ods_diff_hierarchy/collect.py +639 -0
- odsbox_diff-1.0.0/src/odsbox_diff/ods_diff_hierarchy/diff.py +35 -0
- odsbox_diff-1.0.0/src/odsbox_diff/ods_diff_hierarchy/rel_to_name.py +74 -0
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for describing the origin of the Work and
|
|
141
|
+
reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may accept support,
|
|
167
|
+
warranty, indemnity, or other liability obligations and/or rights
|
|
168
|
+
consistent with this License. However, in accepting such obligations,
|
|
169
|
+
You may act only on Your own behalf and on Your sole responsibility,
|
|
170
|
+
not on behalf of any other Contributor, and only if You agree to
|
|
171
|
+
indemnify, defend, and hold each Contributor harmless for any
|
|
172
|
+
liability incurred by, or claims asserted against, such Contributor
|
|
173
|
+
by reason of your accepting any such warranty or additional liability.
|
|
174
|
+
|
|
175
|
+
END OF TERMS AND CONDITIONS
|
|
176
|
+
|
|
177
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
178
|
+
|
|
179
|
+
To apply the Apache License to your work, attach the following
|
|
180
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
181
|
+
replaced with your own identifying information. (Don't include
|
|
182
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
183
|
+
comment syntax for the file format. We also recommend that a
|
|
184
|
+
file or class name and description of purpose be included on the
|
|
185
|
+
same "printed page" as the copyright notice for easier
|
|
186
|
+
identification within third-party archives.
|
|
187
|
+
|
|
188
|
+
Copyright 2026 Peak Solution GmbH
|
|
189
|
+
|
|
190
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
191
|
+
you may not use this file except in compliance with the License.
|
|
192
|
+
You may obtain a copy of the License at
|
|
193
|
+
|
|
194
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
195
|
+
|
|
196
|
+
Unless required by applicable law or agreed to in writing, software
|
|
197
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
198
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
199
|
+
implied. See the License for the specific language governing permissions and
|
|
200
|
+
limitations under the License.
|
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: odsbox-diff
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Compare two ASAM ODS hierarchy instances and write a structured diff result.
|
|
5
|
+
Keywords: ASAM,ODS,measurement data,diff,regression testing
|
|
6
|
+
Author: A. Krantz
|
|
7
|
+
Author-email: A. Krantz <a.krantz@peak-solution.de>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering
|
|
17
|
+
Classifier: Topic :: Software Development :: Testing
|
|
18
|
+
Requires-Dist: deepdiff>=9.0.0
|
|
19
|
+
Requires-Dist: keyring>=24.0.0
|
|
20
|
+
Requires-Dist: odsbox[oidc]>=1.2.0
|
|
21
|
+
Requires-Python: >=3.14
|
|
22
|
+
Project-URL: Homepage, https://github.com/peak-solution/odsbox-diff
|
|
23
|
+
Project-URL: Repository, https://github.com/peak-solution/odsbox-diff
|
|
24
|
+
Project-URL: Issues, https://github.com/peak-solution/odsbox-diff/issues
|
|
25
|
+
Project-URL: Changelog, https://github.com/peak-solution/odsbox-diff/releases
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
|
|
28
|
+
# odsbox-diff
|
|
29
|
+
|
|
30
|
+
[](https://github.com/peak-solution/odsbox-diff/actions/workflows/build.yml)
|
|
31
|
+
[](https://pypi.org/project/odsbox-diff/)
|
|
32
|
+
[](https://pypi.org/project/odsbox-diff/)
|
|
33
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
34
|
+
|
|
35
|
+
A CLI and Python library to compare two instance hierarchies on one or two ASAM ODS
|
|
36
|
+
servers and write a structured diff result. Built on
|
|
37
|
+
[odsbox](https://pypi.org/project/odsbox/) for ODS access and
|
|
38
|
+
[deepdiff](https://pypi.org/project/deepdiff/) for the comparison.
|
|
39
|
+
|
|
40
|
+
Typical use cases:
|
|
41
|
+
|
|
42
|
+
- Verify that a test, test step or measurement was migrated faithfully between
|
|
43
|
+
two servers.
|
|
44
|
+
- Detect unintended changes between two snapshots of the same instance.
|
|
45
|
+
- Hash bulk LocalColumn data to detect changes in measured signals.
|
|
46
|
+
- **Regression testing** — compare a saved baseline file against a live server
|
|
47
|
+
instance.
|
|
48
|
+
- **Create baselines** — collect a hierarchy snapshot to a file for later
|
|
49
|
+
comparison, with optional round-trip validation.
|
|
50
|
+
- **Offline comparison** — diff two previously saved hierarchy files without
|
|
51
|
+
any server connection.
|
|
52
|
+
|
|
53
|
+
> **Full user guide:** see [`docs/usage.md`](docs/usage.md) for comprehensive
|
|
54
|
+
> CLI examples, Python API reference, pytest integration patterns, and
|
|
55
|
+
> troubleshooting.
|
|
56
|
+
|
|
57
|
+
## Installation
|
|
58
|
+
|
|
59
|
+
```powershell
|
|
60
|
+
uv add odsbox-diff
|
|
61
|
+
# or, with pip
|
|
62
|
+
pip install odsbox-diff
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
The package requires Python 3.14+ and ships a console script `odsbox-diff`.
|
|
66
|
+
|
|
67
|
+
## Quick start
|
|
68
|
+
|
|
69
|
+
1. Copy one of the example configs from `configs/` and adjust it:
|
|
70
|
+
|
|
71
|
+
- `config.example.toml` — basic auth (single or multiple servers)
|
|
72
|
+
- `config.m2m.example.toml` — OAuth2 machine-to-machine
|
|
73
|
+
- `config.oidc.example.toml` — OIDC (interactive browser login)
|
|
74
|
+
|
|
75
|
+
2. Store the secret (password / `client_secret`) in your OS keyring (see
|
|
76
|
+
[Keyring secrets](#keyring-secrets) below) or inline it in the config file.
|
|
77
|
+
|
|
78
|
+
3. Run the diff:
|
|
79
|
+
|
|
80
|
+
```powershell
|
|
81
|
+
uv run odsbox-diff `
|
|
82
|
+
--config my-config.toml `
|
|
83
|
+
--entity TestStep `
|
|
84
|
+
-id1 5 `
|
|
85
|
+
-id2 7
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
With multiple named servers, prefix instance IDs with the server name:
|
|
89
|
+
|
|
90
|
+
```powershell
|
|
91
|
+
uv run odsbox-diff `
|
|
92
|
+
--config my-config.toml `
|
|
93
|
+
--entity TestStep `
|
|
94
|
+
-id1 prod:1898 `
|
|
95
|
+
-id2 staging:2
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Compare two saved JSON files (no server connection needed):
|
|
99
|
+
|
|
100
|
+
```powershell
|
|
101
|
+
uv run odsbox-diff `
|
|
102
|
+
--config my-config.toml `
|
|
103
|
+
--entity TestStep `
|
|
104
|
+
-id1 file:baseline.json `
|
|
105
|
+
-id2 file:current.json
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Collect a hierarchy to a file and self-validate:
|
|
109
|
+
|
|
110
|
+
```powershell
|
|
111
|
+
uv run odsbox-diff collect `
|
|
112
|
+
--config my-config.toml `
|
|
113
|
+
--entity TestStep `
|
|
114
|
+
-id 42 `
|
|
115
|
+
-o baseline.json `
|
|
116
|
+
--validate
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
## CLI reference
|
|
120
|
+
|
|
121
|
+
### `odsbox-diff` (diff mode)
|
|
122
|
+
|
|
123
|
+
| Flag | Description |
|
|
124
|
+
| --- | --- |
|
|
125
|
+
| `-c`, `--config` | Path to a TOML or JSON config file (required). |
|
|
126
|
+
| `--entity` | Root entity name to compare (e.g. `TestStep`, `Measurement`). |
|
|
127
|
+
| `-id1` / `-id2` | Instance reference: plain ID (`42`), `server:id` (`prod:5`), or `file:path.json` to load from disk. |
|
|
128
|
+
| `-rf`, `--result_file` | Override the result-file path from config defaults. |
|
|
129
|
+
| `-ep`, `--exclude_path` | Extra DeepDiff path to exclude (repeatable). |
|
|
130
|
+
| `-erp`, `--exclude_regex_path` | Extra regex path exclusion (repeatable). |
|
|
131
|
+
| `-dd`, `--dump_dictionaries` | Also dump the collected hierarchies as `<result>.inst1.json` / `.inst2.json`. |
|
|
132
|
+
| `-bn`, `--no_bulk` | Skip bulk LocalColumn hashing. |
|
|
133
|
+
| `-bpb`, `--bulk_progress_bar` | Show a progress bar during bulk hashing. |
|
|
134
|
+
| `--cached-related ENTITY [...]` | Resolve relation IDs to names for the listed entities. |
|
|
135
|
+
| `-v`, `--verbose` | INFO logging with timestamps. |
|
|
136
|
+
| `-q`, `--quiet` | Suppress all logging. |
|
|
137
|
+
|
|
138
|
+
CLI flags always override config defaults. List options (`exclude_path`,
|
|
139
|
+
`exclude_regex_path`, `cached-related`) extend the config defaults rather than
|
|
140
|
+
replacing them.
|
|
141
|
+
|
|
142
|
+
### `odsbox-diff collect` (collect mode)
|
|
143
|
+
|
|
144
|
+
| Flag | Description |
|
|
145
|
+
| --- | --- |
|
|
146
|
+
| `-c`, `--config` | Path to a TOML or JSON config file (required). |
|
|
147
|
+
| `--entity` | Root entity name to collect. |
|
|
148
|
+
| `-id` | Instance ID or `server:id`. |
|
|
149
|
+
| `-o`, `--output` | Output file path (`.json` or `.zip`). |
|
|
150
|
+
| `--validate` | After saving, reload and self-diff to verify round-trip fidelity. |
|
|
151
|
+
| `-rf`, `--result_file` | Path for the self-diff result (only with `--validate`). |
|
|
152
|
+
| `-bn`, `--no_bulk` | Skip bulk LocalColumn hashing. |
|
|
153
|
+
| `-bpb`, `--bulk_progress_bar` | Show a progress bar during bulk hashing. |
|
|
154
|
+
| `--cached-related ENTITY [...]` | Resolve relation IDs to names. |
|
|
155
|
+
| `-v`, `--verbose` | INFO logging with timestamps. |
|
|
156
|
+
| `-q`, `--quiet` | Suppress all logging. |
|
|
157
|
+
|
|
158
|
+
## Exit codes
|
|
159
|
+
|
|
160
|
+
| Code | Meaning |
|
|
161
|
+
| --- | --- |
|
|
162
|
+
| `0` | No differences found (or collect completed successfully). |
|
|
163
|
+
| `100` | Differences found; result file written. |
|
|
164
|
+
| `1` | Argument or `server:id` validation error. |
|
|
165
|
+
| `-1` | Uncaught exception. |
|
|
166
|
+
|
|
167
|
+
## Keyring secrets
|
|
168
|
+
|
|
169
|
+
Secrets are read from the OS keyring under the service name `odsbox-diff`:
|
|
170
|
+
|
|
171
|
+
| Auth method | Keyring key |
|
|
172
|
+
| --- | --- |
|
|
173
|
+
| `basic` | `<url>:<username>` (password) |
|
|
174
|
+
| `m2m` / `oidc` | `<token_endpoint>:<client_id>` (`client_secret`) |
|
|
175
|
+
|
|
176
|
+
Example with the `keyring` CLI:
|
|
177
|
+
|
|
178
|
+
```powershell
|
|
179
|
+
keyring set odsbox-diff "http://localhost:57481/api:admin"
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
## Library usage
|
|
183
|
+
|
|
184
|
+
### High-level API (recommended for test frameworks)
|
|
185
|
+
|
|
186
|
+
```python
|
|
187
|
+
from odsbox_diff import diff_file_to_file, diff_file_to_server, collect_to_file
|
|
188
|
+
from odsbox_diff.connection import AppConfig, ServerConfig, AuthMethod
|
|
189
|
+
|
|
190
|
+
# Compare two saved files — no server needed
|
|
191
|
+
diff = diff_file_to_file("baseline.json", "current.json")
|
|
192
|
+
assert not diff # falsy = no differences
|
|
193
|
+
|
|
194
|
+
# Regression test: baseline file vs live server
|
|
195
|
+
diff = diff_file_to_server("my-config.toml", "TestStep", 42, "baseline.json")
|
|
196
|
+
assert not diff
|
|
197
|
+
|
|
198
|
+
# Build config in code (no config file needed)
|
|
199
|
+
cfg = AppConfig(servers={"default": ServerConfig(
|
|
200
|
+
url="http://localhost:8080/api",
|
|
201
|
+
username="admin",
|
|
202
|
+
password="secret",
|
|
203
|
+
)})
|
|
204
|
+
diff = diff_file_to_server(cfg, "TestStep", 42, "baseline.json")
|
|
205
|
+
|
|
206
|
+
# Collect a baseline and validate round-trip fidelity
|
|
207
|
+
result = collect_to_file("my-config.toml", "TestStep", 42, "baseline.json", validate=True)
|
|
208
|
+
assert not result # falsy = round-trip is clean
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
### Low-level building blocks
|
|
212
|
+
|
|
213
|
+
```python
|
|
214
|
+
from odsbox_diff import (
|
|
215
|
+
collect,
|
|
216
|
+
diff_dictionaries,
|
|
217
|
+
dump_diff_as_json,
|
|
218
|
+
save_collect_results,
|
|
219
|
+
)
|
|
220
|
+
from odsbox_diff.connection import create_connection, load_config
|
|
221
|
+
|
|
222
|
+
app_config = load_config("my-config.toml")
|
|
223
|
+
server = next(iter(app_config.servers.values()))
|
|
224
|
+
|
|
225
|
+
with create_connection(server) as con_i:
|
|
226
|
+
tree_a, _ = collect(con_i, "TestStep", 5)
|
|
227
|
+
tree_b, _ = collect(con_i, "TestStep", 7)
|
|
228
|
+
|
|
229
|
+
diff = diff_dictionaries(tree_a, tree_b, [], [])
|
|
230
|
+
dump_diff_as_json("diff.json", diff)
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
## Configuration reference
|
|
234
|
+
|
|
235
|
+
### `[server]` / `[servers.<name>]`
|
|
236
|
+
|
|
237
|
+
Either a single `[server]` table (stored internally as the `default` server) or
|
|
238
|
+
one `[servers.<name>]` table per named server. Common fields:
|
|
239
|
+
|
|
240
|
+
| Field | Type | Notes |
|
|
241
|
+
| --- | --- | --- |
|
|
242
|
+
| `url` | string | ODS REST endpoint (required). |
|
|
243
|
+
| `verify_certificate` | bool | Default `true`. |
|
|
244
|
+
| `method` | string | `basic`, `m2m`, or `oidc`. Default `basic`. |
|
|
245
|
+
|
|
246
|
+
Method-specific fields are documented in the example configs in `configs/`.
|
|
247
|
+
|
|
248
|
+
When using file-to-file comparisons only, the `[server]` section can be omitted
|
|
249
|
+
entirely — only `[defaults]` is needed.
|
|
250
|
+
|
|
251
|
+
### `[defaults]`
|
|
252
|
+
|
|
253
|
+
Optional defaults for diff behavior:
|
|
254
|
+
|
|
255
|
+
| Field | Type | Default |
|
|
256
|
+
| --- | --- | --- |
|
|
257
|
+
| `result_file` | string | `"diff_ods_tests_result.json"` |
|
|
258
|
+
| `exclude_paths` | list | `[]` |
|
|
259
|
+
| `exclude_regex_paths` | list | `[]` (default `Id` / `DateCreated` / `Version` exclusions are always applied) |
|
|
260
|
+
| `cached_related` | list | `[]` |
|
|
261
|
+
| `bulk_progress_bar` | bool | `false` |
|
|
262
|
+
| `no_bulk` | bool | `false` |
|
|
263
|
+
| `dump_dictionaries` | bool | `false` |
|
|
264
|
+
| `verbose` | bool | `false` |
|
|
265
|
+
| `quiet` | bool | `false` |
|
|
266
|
+
|
|
267
|
+
## Development
|
|
268
|
+
|
|
269
|
+
```powershell
|
|
270
|
+
uv sync
|
|
271
|
+
uv run pytest
|
|
272
|
+
uv run ruff check src tests
|
|
273
|
+
uv run mypy src
|
|
274
|
+
```
|