systemlink-cli 1.3.1__py3-none-any.whl
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.
- slcli/__init__.py +1 -0
- slcli/__main__.py +23 -0
- slcli/_version.py +4 -0
- slcli/asset_click.py +1289 -0
- slcli/cli_formatters.py +218 -0
- slcli/cli_utils.py +504 -0
- slcli/comment_click.py +602 -0
- slcli/completion_click.py +418 -0
- slcli/config.py +81 -0
- slcli/config_click.py +498 -0
- slcli/dff_click.py +979 -0
- slcli/dff_decorators.py +24 -0
- slcli/example_click.py +404 -0
- slcli/example_loader.py +274 -0
- slcli/example_provisioner.py +2777 -0
- slcli/examples/README.md +134 -0
- slcli/examples/_schema/schema-v1.0.json +169 -0
- slcli/examples/demo-complete-workflow/README.md +323 -0
- slcli/examples/demo-complete-workflow/config.yaml +638 -0
- slcli/examples/demo-test-plans/README.md +132 -0
- slcli/examples/demo-test-plans/config.yaml +154 -0
- slcli/examples/exercise-5-1-parametric-insights/README.md +101 -0
- slcli/examples/exercise-5-1-parametric-insights/config.yaml +1589 -0
- slcli/examples/exercise-7-1-test-plans/README.md +93 -0
- slcli/examples/exercise-7-1-test-plans/config.yaml +323 -0
- slcli/examples/spec-compliance-notebooks/README.md +140 -0
- slcli/examples/spec-compliance-notebooks/config.yaml +112 -0
- slcli/examples/spec-compliance-notebooks/notebooks/SpecAnalysis_ComplianceCalculation.ipynb +1553 -0
- slcli/examples/spec-compliance-notebooks/notebooks/SpecComplianceCalculation.ipynb +1577 -0
- slcli/examples/spec-compliance-notebooks/notebooks/SpecfileExtractionAndIngestion.ipynb +912 -0
- slcli/examples/spec-compliance-notebooks/spec_template.xlsx +0 -0
- slcli/feed_click.py +892 -0
- slcli/file_click.py +932 -0
- slcli/function_click.py +1400 -0
- slcli/function_templates.py +85 -0
- slcli/main.py +406 -0
- slcli/mcp_click.py +269 -0
- slcli/mcp_server.py +748 -0
- slcli/notebook_click.py +1770 -0
- slcli/platform.py +345 -0
- slcli/policy_click.py +679 -0
- slcli/policy_utils.py +411 -0
- slcli/profiles.py +411 -0
- slcli/response_handlers.py +359 -0
- slcli/routine_click.py +763 -0
- slcli/skill_click.py +253 -0
- slcli/skills/slcli/SKILL.md +713 -0
- slcli/skills/slcli/references/analysis-recipes.md +474 -0
- slcli/skills/slcli/references/filtering.md +236 -0
- slcli/skills/systemlink-webapp/SKILL.md +744 -0
- slcli/skills/systemlink-webapp/references/deployment.md +123 -0
- slcli/skills/systemlink-webapp/references/nimble-angular.md +380 -0
- slcli/skills/systemlink-webapp/references/systemlink-services.md +192 -0
- slcli/ssl_trust.py +93 -0
- slcli/system_click.py +2216 -0
- slcli/table_utils.py +124 -0
- slcli/tag_click.py +794 -0
- slcli/templates_click.py +599 -0
- slcli/testmonitor_click.py +1667 -0
- slcli/universal_handlers.py +305 -0
- slcli/user_click.py +1218 -0
- slcli/utils.py +832 -0
- slcli/web_editor.py +295 -0
- slcli/webapp_click.py +981 -0
- slcli/workflow_preview.py +287 -0
- slcli/workflows_click.py +988 -0
- slcli/workitem_click.py +2258 -0
- slcli/workspace_click.py +576 -0
- slcli/workspace_utils.py +206 -0
- systemlink_cli-1.3.1.dist-info/METADATA +20 -0
- systemlink_cli-1.3.1.dist-info/RECORD +74 -0
- systemlink_cli-1.3.1.dist-info/WHEEL +4 -0
- systemlink_cli-1.3.1.dist-info/entry_points.txt +7 -0
- systemlink_cli-1.3.1.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,638 @@
|
|
|
1
|
+
---
|
|
2
|
+
# SLE Example Configuration: Production Quality Assurance Lab
|
|
3
|
+
format_version: "1.0"
|
|
4
|
+
name: "demo-complete-workflow"
|
|
5
|
+
title: "Production Quality Assurance Testing Laboratory"
|
|
6
|
+
description: |
|
|
7
|
+
A comprehensive example demonstrating a complete production testing facility
|
|
8
|
+
with multiple test systems, DUTs, and assets for quality assurance validation.
|
|
9
|
+
|
|
10
|
+
Includes:
|
|
11
|
+
- Centralized production QA facility with location hierarchy
|
|
12
|
+
- Multiple product variants with different part numbers
|
|
13
|
+
- Dedicated test systems and benches
|
|
14
|
+
- Collection of DUTs under test with full identification
|
|
15
|
+
- Support equipment and reference instruments
|
|
16
|
+
- Reusable test templates for validation procedures
|
|
17
|
+
|
|
18
|
+
Perfect for understanding how to model a complete testing lab environment
|
|
19
|
+
with multiple systems working in parallel on different product variants.
|
|
20
|
+
|
|
21
|
+
author: "NI"
|
|
22
|
+
created_date: "2025-12-18"
|
|
23
|
+
updated_date: "2025-12-18"
|
|
24
|
+
tags:
|
|
25
|
+
- "production"
|
|
26
|
+
- "quality-assurance"
|
|
27
|
+
- "test-lab"
|
|
28
|
+
- "multi-system"
|
|
29
|
+
|
|
30
|
+
estimated_setup_time_minutes: 5
|
|
31
|
+
required_systemlink_version: "2024.1"
|
|
32
|
+
target_workspace: null
|
|
33
|
+
|
|
34
|
+
resources:
|
|
35
|
+
# ============================================================================
|
|
36
|
+
# TIER 0: FOUNDATIONAL RESOURCES
|
|
37
|
+
# ============================================================================
|
|
38
|
+
|
|
39
|
+
# Phase 1: Locations
|
|
40
|
+
- type: "location"
|
|
41
|
+
name: "Production Test Lab"
|
|
42
|
+
properties:
|
|
43
|
+
description: "Main production testing facility"
|
|
44
|
+
address: "456 Industrial Blvd"
|
|
45
|
+
city: "Austin"
|
|
46
|
+
state: "TX"
|
|
47
|
+
country: "USA"
|
|
48
|
+
building: "Lab Complex A"
|
|
49
|
+
id_reference: "loc_lab"
|
|
50
|
+
tags: ["demo-complete-workflow"]
|
|
51
|
+
|
|
52
|
+
# Phase 2: Products
|
|
53
|
+
- type: "product"
|
|
54
|
+
name: "Advanced Control System v3.0"
|
|
55
|
+
properties:
|
|
56
|
+
description: "Multi-axis motion control system with real-time feedback"
|
|
57
|
+
category: "Control Systems"
|
|
58
|
+
manufacturer: "Demo Advanced Tech"
|
|
59
|
+
part_number: "DCS-3000"
|
|
60
|
+
id_reference: "prod_acs"
|
|
61
|
+
tags: ["demo-complete-workflow"]
|
|
62
|
+
|
|
63
|
+
# Phase 3: Systems
|
|
64
|
+
- type: "system"
|
|
65
|
+
name: "Control System Test Bench 1"
|
|
66
|
+
properties:
|
|
67
|
+
description: "Primary test bench for ACS validation"
|
|
68
|
+
location_id: "${loc_lab}"
|
|
69
|
+
product_id: "${prod_acs}"
|
|
70
|
+
serial_number: "CSTB-001"
|
|
71
|
+
status: "operational"
|
|
72
|
+
id_reference: "sys_bench1"
|
|
73
|
+
tags: ["demo-complete-workflow"]
|
|
74
|
+
|
|
75
|
+
- type: "system"
|
|
76
|
+
name: "Control System Test Bench 2"
|
|
77
|
+
properties:
|
|
78
|
+
description: "Secondary test bench for regression testing"
|
|
79
|
+
location_id: "${loc_lab}"
|
|
80
|
+
product_id: "${prod_acs}"
|
|
81
|
+
serial_number: "CSTB-002"
|
|
82
|
+
status: "operational"
|
|
83
|
+
id_reference: "sys_bench2"
|
|
84
|
+
tags: ["demo-complete-workflow"]
|
|
85
|
+
|
|
86
|
+
# ============================================================================
|
|
87
|
+
# TIER 1: CROSS-CUTTING RESOURCES
|
|
88
|
+
# ============================================================================
|
|
89
|
+
|
|
90
|
+
# Phase 4: Assets (DUTs under test)
|
|
91
|
+
- type: "dut"
|
|
92
|
+
name: "DUT-ACS-001 (Bench 1)"
|
|
93
|
+
properties:
|
|
94
|
+
description: "Advanced Control System unit 001 for validation"
|
|
95
|
+
system_id: "${sys_bench1}"
|
|
96
|
+
location_id: "${loc_lab}"
|
|
97
|
+
model_name: "ACS3000"
|
|
98
|
+
model_number: "3000"
|
|
99
|
+
vendor_name: "Demo Advanced Tech"
|
|
100
|
+
vendor_number: "DAT-001"
|
|
101
|
+
serial_number: "ACS-SN-20250101-001"
|
|
102
|
+
bus_type: "USB"
|
|
103
|
+
id_reference: "dut_acs_001"
|
|
104
|
+
tags: ["demo-complete-workflow"]
|
|
105
|
+
|
|
106
|
+
- type: "dut"
|
|
107
|
+
name: "DUT-ACS-002 (Bench 2)"
|
|
108
|
+
properties:
|
|
109
|
+
description: "Advanced Control System unit 002 for regression"
|
|
110
|
+
system_id: "${sys_bench2}"
|
|
111
|
+
location_id: "${loc_lab}"
|
|
112
|
+
model_name: "ACS3000"
|
|
113
|
+
model_number: "3000"
|
|
114
|
+
vendor_name: "Demo Advanced Tech"
|
|
115
|
+
vendor_number: "DAT-001"
|
|
116
|
+
serial_number: "ACS-SN-20250102-002"
|
|
117
|
+
bus_type: "USB"
|
|
118
|
+
id_reference: "dut_acs_002"
|
|
119
|
+
tags: ["demo-complete-workflow"]
|
|
120
|
+
|
|
121
|
+
# Phase 5: Fixtures/Reference instruments
|
|
122
|
+
- type: "asset"
|
|
123
|
+
name: "Reference Voltage Source"
|
|
124
|
+
properties:
|
|
125
|
+
description: "Calibrated reference for voltage validation"
|
|
126
|
+
system_id: "${sys_bench1}"
|
|
127
|
+
location_id: "${loc_lab}"
|
|
128
|
+
model_name: "RefVoltage Pro"
|
|
129
|
+
vendor_name: "Demo Advanced Tech"
|
|
130
|
+
bus_type: "GPIB"
|
|
131
|
+
serial_number: "REF-VS-SN-001"
|
|
132
|
+
id_reference: "asset_ref_vs"
|
|
133
|
+
tags: ["demo-complete-workflow"]
|
|
134
|
+
|
|
135
|
+
- type: "asset"
|
|
136
|
+
name: "Data Logger"
|
|
137
|
+
properties:
|
|
138
|
+
description: "Multi-channel data logging system"
|
|
139
|
+
system_id: "${sys_bench1}"
|
|
140
|
+
location_id: "${loc_lab}"
|
|
141
|
+
model_name: "DataLog-X"
|
|
142
|
+
vendor_name: "Demo Advanced Tech"
|
|
143
|
+
bus_type: "Ethernet"
|
|
144
|
+
serial_number: "DLX-SN-001"
|
|
145
|
+
id_reference: "asset_datalogger"
|
|
146
|
+
tags: ["demo-complete-workflow"]
|
|
147
|
+
|
|
148
|
+
# ============================================================================
|
|
149
|
+
# TIER 2: WORK & EXECUTION RESOURCES
|
|
150
|
+
# ============================================================================
|
|
151
|
+
|
|
152
|
+
# Phase 6: Custom Workflow (defines work item state machine)
|
|
153
|
+
# Workflow must define all 8 work item states: NEW, DEFINED, REVIEWED, SCHEDULED, IN_PROGRESS, PENDING_APPROVAL, CLOSED, CANCELED
|
|
154
|
+
- type: "workflow"
|
|
155
|
+
name: "ACS Validation Workflow"
|
|
156
|
+
properties:
|
|
157
|
+
description: "Work item state machine for ACS validation tests"
|
|
158
|
+
# Define actions that transition work items between states
|
|
159
|
+
actions:
|
|
160
|
+
- name: "START"
|
|
161
|
+
displayText: "Start Test"
|
|
162
|
+
executionAction:
|
|
163
|
+
type: "MANUAL"
|
|
164
|
+
action: "START"
|
|
165
|
+
- name: "END"
|
|
166
|
+
displayText: "End Test"
|
|
167
|
+
executionAction:
|
|
168
|
+
type: "MANUAL"
|
|
169
|
+
action: "END"
|
|
170
|
+
# Define all required states (must match work item states exactly)
|
|
171
|
+
# Work item state machine requires: NEW, DEFINED, REVIEWED, SCHEDULED, IN_PROGRESS, PENDING_APPROVAL, CLOSED, CANCELED
|
|
172
|
+
states:
|
|
173
|
+
- name: "NEW"
|
|
174
|
+
dashboardAvailable: false
|
|
175
|
+
defaultSubstate: "NEW"
|
|
176
|
+
substates:
|
|
177
|
+
- name: "NEW"
|
|
178
|
+
displayText: "New"
|
|
179
|
+
availableActions: []
|
|
180
|
+
- name: "DEFINED"
|
|
181
|
+
dashboardAvailable: false
|
|
182
|
+
defaultSubstate: "DEFINED"
|
|
183
|
+
substates:
|
|
184
|
+
- name: "DEFINED"
|
|
185
|
+
displayText: "Defined"
|
|
186
|
+
availableActions: []
|
|
187
|
+
- name: "REVIEWED"
|
|
188
|
+
dashboardAvailable: false
|
|
189
|
+
defaultSubstate: "REVIEWED"
|
|
190
|
+
substates:
|
|
191
|
+
- name: "REVIEWED"
|
|
192
|
+
displayText: "Reviewed"
|
|
193
|
+
availableActions: []
|
|
194
|
+
- name: "SCHEDULED"
|
|
195
|
+
dashboardAvailable: true
|
|
196
|
+
defaultSubstate: "SCHEDULED"
|
|
197
|
+
substates:
|
|
198
|
+
- name: "SCHEDULED"
|
|
199
|
+
displayText: "Scheduled"
|
|
200
|
+
availableActions:
|
|
201
|
+
- action: "START"
|
|
202
|
+
nextState: "IN_PROGRESS"
|
|
203
|
+
nextSubstate: "IN_PROGRESS"
|
|
204
|
+
showInUI: true
|
|
205
|
+
- name: "IN_PROGRESS"
|
|
206
|
+
dashboardAvailable: true
|
|
207
|
+
defaultSubstate: "IN_PROGRESS"
|
|
208
|
+
substates:
|
|
209
|
+
- name: "IN_PROGRESS"
|
|
210
|
+
displayText: "In Progress"
|
|
211
|
+
availableActions:
|
|
212
|
+
- action: "END"
|
|
213
|
+
nextState: "PENDING_APPROVAL"
|
|
214
|
+
nextSubstate: "PENDING_APPROVAL"
|
|
215
|
+
showInUI: true
|
|
216
|
+
- name: "PENDING_APPROVAL"
|
|
217
|
+
dashboardAvailable: true
|
|
218
|
+
defaultSubstate: "PENDING_APPROVAL"
|
|
219
|
+
substates:
|
|
220
|
+
- name: "PENDING_APPROVAL"
|
|
221
|
+
displayText: "Pending Approval"
|
|
222
|
+
availableActions: []
|
|
223
|
+
- name: "CLOSED"
|
|
224
|
+
dashboardAvailable: false
|
|
225
|
+
defaultSubstate: "CLOSED"
|
|
226
|
+
substates:
|
|
227
|
+
- name: "CLOSED"
|
|
228
|
+
displayText: "Closed"
|
|
229
|
+
availableActions: []
|
|
230
|
+
- name: "CANCELED"
|
|
231
|
+
dashboardAvailable: false
|
|
232
|
+
defaultSubstate: "CANCELED"
|
|
233
|
+
substates:
|
|
234
|
+
- name: "CANCELED"
|
|
235
|
+
displayText: "Canceled"
|
|
236
|
+
availableActions: []
|
|
237
|
+
id_reference: "wf_acs_validation"
|
|
238
|
+
tags: ["demo-complete-workflow"]
|
|
239
|
+
|
|
240
|
+
# Phase 7: Test Template (references Workflow)
|
|
241
|
+
- type: "testtemplate"
|
|
242
|
+
name: "ACS Validation Suite"
|
|
243
|
+
properties:
|
|
244
|
+
description: "Complete validation test suite for Advanced Control Systems"
|
|
245
|
+
template_group: "Validation"
|
|
246
|
+
type: "testplan"
|
|
247
|
+
workflow_id: "${wf_acs_validation}"
|
|
248
|
+
product_families: ["Advanced Control Systems"]
|
|
249
|
+
part_numbers: ["DCS-3000"]
|
|
250
|
+
test_program: "ACS_Validation_v3.0"
|
|
251
|
+
procedures: |
|
|
252
|
+
# ACS Validation Test Procedures
|
|
253
|
+
|
|
254
|
+
## Setup Phase
|
|
255
|
+
1. Connect DUT to test bench via USB
|
|
256
|
+
2. Verify power supply output: 24V ±0.5V
|
|
257
|
+
3. Calibrate reference voltage source
|
|
258
|
+
4. Configure data logger for 100 Hz sampling
|
|
259
|
+
|
|
260
|
+
## Test Phases
|
|
261
|
+
### Phase 1: DC Voltage Regulation
|
|
262
|
+
- Set output to 12V
|
|
263
|
+
- Vary load from 0A to 5A
|
|
264
|
+
- Measure voltage stability (target: < 2% ripple)
|
|
265
|
+
- Record data to Table: voltage_regulation_results
|
|
266
|
+
|
|
267
|
+
### Phase 2: Response Time
|
|
268
|
+
- Apply step input: 0V → 10V
|
|
269
|
+
- Measure rise time (target: < 100ms)
|
|
270
|
+
- Repeat 5 times, record average to Table: response_time_results
|
|
271
|
+
|
|
272
|
+
### Phase 3: Thermal Test
|
|
273
|
+
- Run at full load for 30 minutes
|
|
274
|
+
- Monitor temperature continuously
|
|
275
|
+
- Record peak temperature to Table: thermal_results
|
|
276
|
+
|
|
277
|
+
## Acceptance Criteria
|
|
278
|
+
- Voltage ripple: < 2%
|
|
279
|
+
- Response time: < 100ms
|
|
280
|
+
- Thermal: < 80°C
|
|
281
|
+
acceptance_criteria: "All measurements within specification limits"
|
|
282
|
+
id_reference: "tt_acs_validation"
|
|
283
|
+
tags: ["demo-complete-workflow"]
|
|
284
|
+
|
|
285
|
+
# Phase 8: Work Items (Test Plans - scheduled via Work Order)
|
|
286
|
+
- type: "work_item"
|
|
287
|
+
name: "ACS Validation Run 1 - Unit 001"
|
|
288
|
+
properties:
|
|
289
|
+
description: "Validation of ACS unit 001 on primary bench"
|
|
290
|
+
work_item_type: "testplan"
|
|
291
|
+
test_template_id: "${tt_acs_validation}"
|
|
292
|
+
scheduled_dut: "${dut_acs_001}"
|
|
293
|
+
scheduled_system: "${sys_bench1}"
|
|
294
|
+
assigned_operator: "Test Engineer A"
|
|
295
|
+
priority: "high"
|
|
296
|
+
expected_duration_minutes: 60
|
|
297
|
+
acceptance_criteria: "All measurements pass spec limits"
|
|
298
|
+
id_reference: "wi_acs_run1"
|
|
299
|
+
tags: ["demo-complete-workflow", "run1"]
|
|
300
|
+
|
|
301
|
+
- type: "work_item"
|
|
302
|
+
name: "ACS Regression Test - Unit 002"
|
|
303
|
+
properties:
|
|
304
|
+
description: "Regression validation of ACS unit 002 on secondary bench"
|
|
305
|
+
work_item_type: "testplan"
|
|
306
|
+
test_template_id: "${tt_acs_validation}"
|
|
307
|
+
scheduled_dut: "${dut_acs_002}"
|
|
308
|
+
scheduled_system: "${sys_bench2}"
|
|
309
|
+
assigned_operator: "Test Engineer B"
|
|
310
|
+
priority: "medium"
|
|
311
|
+
expected_duration_minutes: 60
|
|
312
|
+
acceptance_criteria: "All measurements pass spec limits"
|
|
313
|
+
id_reference: "wi_acs_run2"
|
|
314
|
+
tags: ["demo-complete-workflow", "run2"]
|
|
315
|
+
|
|
316
|
+
# Phase 9: Work Order (schedules Work Items and reserves resources)
|
|
317
|
+
- type: "work_order"
|
|
318
|
+
name: "ACS Validation Campaign - December 2025"
|
|
319
|
+
properties:
|
|
320
|
+
description: "Complete validation campaign for ACS v3.0 release"
|
|
321
|
+
work_order_type: "validation"
|
|
322
|
+
status: "completed"
|
|
323
|
+
priority: "high"
|
|
324
|
+
scheduled_start: "2025-12-18T08:00:00Z"
|
|
325
|
+
scheduled_end: "2025-12-18T12:00:00Z"
|
|
326
|
+
assigned_team: "Validation Team A"
|
|
327
|
+
work_items:
|
|
328
|
+
- "${wi_acs_run1}"
|
|
329
|
+
- "${wi_acs_run2}"
|
|
330
|
+
reserved_systems:
|
|
331
|
+
- "${sys_bench1}"
|
|
332
|
+
- "${sys_bench2}"
|
|
333
|
+
reserved_assets:
|
|
334
|
+
- "${dut_acs_001}"
|
|
335
|
+
- "${dut_acs_002}"
|
|
336
|
+
id_reference: "wo_acs_campaign"
|
|
337
|
+
tags: ["demo-complete-workflow"]
|
|
338
|
+
|
|
339
|
+
# ============================================================================
|
|
340
|
+
# TIER 3: DATA & RESULTS RESOURCES
|
|
341
|
+
# ============================================================================
|
|
342
|
+
|
|
343
|
+
# Phase 10: Test Results (generated from Work Item execution)
|
|
344
|
+
- type: "test_result"
|
|
345
|
+
name: "ACS Run 1 - Result 1 (Voltage Test)"
|
|
346
|
+
properties:
|
|
347
|
+
description: "Voltage regulation test results for ACS unit 001"
|
|
348
|
+
work_item_id: "${wi_acs_run1}"
|
|
349
|
+
dut_id: "${dut_acs_001}"
|
|
350
|
+
system_id: "${sys_bench1}"
|
|
351
|
+
test_phase: "DC Voltage Regulation"
|
|
352
|
+
start_time: "2025-12-18T08:15:00Z"
|
|
353
|
+
end_time: "2025-12-18T08:35:00Z"
|
|
354
|
+
status: "passed"
|
|
355
|
+
operator: "Test Engineer A"
|
|
356
|
+
measurements:
|
|
357
|
+
output_voltage_12v_0a: "12.00V"
|
|
358
|
+
output_voltage_12v_5a: "11.98V"
|
|
359
|
+
ripple_percentage: "0.8%"
|
|
360
|
+
test_verdict: "PASS"
|
|
361
|
+
notes: "Voltage regulation excellent across all load points"
|
|
362
|
+
data_table_id: "dt_voltage_reg_run1"
|
|
363
|
+
files:
|
|
364
|
+
- "voltage_regulation_run1.csv"
|
|
365
|
+
- "voltage_waveform_run1.tds"
|
|
366
|
+
id_reference: "tr_acs_run1_voltage"
|
|
367
|
+
tags: ["demo-complete-workflow", "run1"]
|
|
368
|
+
|
|
369
|
+
- type: "test_result"
|
|
370
|
+
name: "ACS Run 1 - Result 2 (Response Time Test)"
|
|
371
|
+
properties:
|
|
372
|
+
description: "Response time measurements for ACS unit 001"
|
|
373
|
+
work_item_id: "${wi_acs_run1}"
|
|
374
|
+
dut_id: "${dut_acs_001}"
|
|
375
|
+
system_id: "${sys_bench1}"
|
|
376
|
+
test_phase: "Response Time"
|
|
377
|
+
start_time: "2025-12-18T08:40:00Z"
|
|
378
|
+
end_time: "2025-12-18T08:52:00Z"
|
|
379
|
+
status: "passed"
|
|
380
|
+
operator: "Test Engineer A"
|
|
381
|
+
measurements:
|
|
382
|
+
rise_time_avg_ms: "87.3"
|
|
383
|
+
rise_time_min_ms: "85.1"
|
|
384
|
+
rise_time_max_ms: "89.5"
|
|
385
|
+
settling_time_ms: "92.0"
|
|
386
|
+
test_verdict: "PASS"
|
|
387
|
+
notes: "Response time consistently under 100ms specification"
|
|
388
|
+
data_table_id: "dt_response_time_run1"
|
|
389
|
+
files:
|
|
390
|
+
- "response_time_run1.csv"
|
|
391
|
+
- "step_response_run1.tds"
|
|
392
|
+
id_reference: "tr_acs_run1_response"
|
|
393
|
+
tags: ["demo-complete-workflow", "run1"]
|
|
394
|
+
|
|
395
|
+
- type: "test_result"
|
|
396
|
+
name: "ACS Run 1 - Result 3 (Thermal Test)"
|
|
397
|
+
properties:
|
|
398
|
+
description: "Thermal performance test for ACS unit 001"
|
|
399
|
+
work_item_id: "${wi_acs_run1}"
|
|
400
|
+
dut_id: "${dut_acs_001}"
|
|
401
|
+
system_id: "${sys_bench1}"
|
|
402
|
+
test_phase: "Thermal Performance"
|
|
403
|
+
start_time: "2025-12-18T08:55:00Z"
|
|
404
|
+
end_time: "2025-12-18T09:28:00Z"
|
|
405
|
+
status: "passed"
|
|
406
|
+
operator: "Test Engineer A"
|
|
407
|
+
measurements:
|
|
408
|
+
ambient_temperature_c: "22.5"
|
|
409
|
+
peak_internal_temp_c: "68.3"
|
|
410
|
+
thermal_rise_c: "45.8"
|
|
411
|
+
stabilization_time_minutes: "18"
|
|
412
|
+
test_verdict: "PASS"
|
|
413
|
+
notes: "Thermal performance excellent; peak temp well below 80C limit"
|
|
414
|
+
data_table_id: "dt_thermal_run1"
|
|
415
|
+
files:
|
|
416
|
+
- "thermal_profile_run1.csv"
|
|
417
|
+
- "thermal_log_run1.txt"
|
|
418
|
+
id_reference: "tr_acs_run1_thermal"
|
|
419
|
+
tags: ["demo-complete-workflow", "run1"]
|
|
420
|
+
|
|
421
|
+
- type: "test_result"
|
|
422
|
+
name: "ACS Run 2 - Voltage Regression Test"
|
|
423
|
+
properties:
|
|
424
|
+
description: "Voltage regression test for ACS unit 002"
|
|
425
|
+
work_item_id: "${wi_acs_run2}"
|
|
426
|
+
dut_id: "${dut_acs_002}"
|
|
427
|
+
system_id: "${sys_bench2}"
|
|
428
|
+
test_phase: "DC Voltage Regulation"
|
|
429
|
+
start_time: "2025-12-18T09:45:00Z"
|
|
430
|
+
end_time: "2025-12-18T10:05:00Z"
|
|
431
|
+
status: "passed"
|
|
432
|
+
operator: "Test Engineer B"
|
|
433
|
+
measurements:
|
|
434
|
+
output_voltage_12v_0a: "12.01V"
|
|
435
|
+
output_voltage_12v_5a: "11.97V"
|
|
436
|
+
ripple_percentage: "0.9%"
|
|
437
|
+
test_verdict: "PASS"
|
|
438
|
+
notes: "Consistent with Run 1 results; no regression detected"
|
|
439
|
+
data_table_id: "dt_voltage_reg_run2"
|
|
440
|
+
files:
|
|
441
|
+
- "voltage_regression_run2.csv"
|
|
442
|
+
- "regression_comparison_run2.txt"
|
|
443
|
+
id_reference: "tr_acs_run2_regression"
|
|
444
|
+
tags: ["demo-complete-workflow", "run2"]
|
|
445
|
+
|
|
446
|
+
- type: "test_result"
|
|
447
|
+
name: "ACS Campaign Summary"
|
|
448
|
+
properties:
|
|
449
|
+
description: "Summary of complete validation campaign"
|
|
450
|
+
work_order_id: "${wo_acs_campaign}"
|
|
451
|
+
test_phase: "Campaign Summary"
|
|
452
|
+
start_time: "2025-12-18T08:00:00Z"
|
|
453
|
+
end_time: "2025-12-18T10:10:00Z"
|
|
454
|
+
status: "passed"
|
|
455
|
+
operator: "Test Engineer A"
|
|
456
|
+
measurements:
|
|
457
|
+
total_tests_run: "5"
|
|
458
|
+
tests_passed: "5"
|
|
459
|
+
tests_failed: "0"
|
|
460
|
+
units_validated: "2"
|
|
461
|
+
duration_minutes: "130"
|
|
462
|
+
test_verdict: "CAMPAIGN PASS"
|
|
463
|
+
notes: "ACS v3.0 successfully validated for production release"
|
|
464
|
+
files:
|
|
465
|
+
- "campaign_summary_report.pdf"
|
|
466
|
+
- "executive_summary.md"
|
|
467
|
+
- "test_matrix_completed.xlsx"
|
|
468
|
+
id_reference: "tr_campaign_summary"
|
|
469
|
+
tags: ["demo-complete-workflow"]
|
|
470
|
+
|
|
471
|
+
# Phase 11: Data Tables (structured measurement data)
|
|
472
|
+
- type: "data_table"
|
|
473
|
+
name: "Voltage Regulation Results - Run 1"
|
|
474
|
+
properties:
|
|
475
|
+
description: "Structured voltage measurement data from Run 1"
|
|
476
|
+
test_result_id: "${tr_acs_run1_voltage}"
|
|
477
|
+
columns:
|
|
478
|
+
- name: "timestamp"
|
|
479
|
+
type: "timestamp"
|
|
480
|
+
unit: "ISO-8601"
|
|
481
|
+
- name: "load_amps"
|
|
482
|
+
type: "number"
|
|
483
|
+
unit: "A"
|
|
484
|
+
- name: "output_voltage"
|
|
485
|
+
type: "number"
|
|
486
|
+
unit: "V"
|
|
487
|
+
- name: "ripple_mv"
|
|
488
|
+
type: "number"
|
|
489
|
+
unit: "mV"
|
|
490
|
+
- name: "status"
|
|
491
|
+
type: "string"
|
|
492
|
+
row_count: 25
|
|
493
|
+
sample_rows:
|
|
494
|
+
- ["2025-12-18T08:15:00Z", 0.0, 12.00, 0.5, "PASS"]
|
|
495
|
+
- ["2025-12-18T08:17:00Z", 1.0, 11.99, 0.7, "PASS"]
|
|
496
|
+
- ["2025-12-18T08:19:00Z", 2.0, 11.98, 0.8, "PASS"]
|
|
497
|
+
- ["2025-12-18T08:21:00Z", 3.0, 11.97, 0.9, "PASS"]
|
|
498
|
+
- ["2025-12-18T08:23:00Z", 5.0, 11.98, 0.8, "PASS"]
|
|
499
|
+
id_reference: "dt_voltage_reg_run1"
|
|
500
|
+
tags: ["demo-complete-workflow", "run1"]
|
|
501
|
+
|
|
502
|
+
- type: "data_table"
|
|
503
|
+
name: "Response Time Results - Run 1"
|
|
504
|
+
properties:
|
|
505
|
+
description: "Step response measurements from Run 1"
|
|
506
|
+
test_result_id: "${tr_acs_run1_response}"
|
|
507
|
+
columns:
|
|
508
|
+
- name: "test_number"
|
|
509
|
+
type: "number"
|
|
510
|
+
unit: "count"
|
|
511
|
+
- name: "rise_time_ms"
|
|
512
|
+
type: "number"
|
|
513
|
+
unit: "ms"
|
|
514
|
+
- name: "settling_time_ms"
|
|
515
|
+
type: "number"
|
|
516
|
+
unit: "ms"
|
|
517
|
+
- name: "overshoot_percent"
|
|
518
|
+
type: "number"
|
|
519
|
+
unit: "%"
|
|
520
|
+
row_count: 5
|
|
521
|
+
sample_rows:
|
|
522
|
+
- [1, 86.2, 91.5, 2.3]
|
|
523
|
+
- [2, 87.5, 92.1, 2.1]
|
|
524
|
+
- [3, 88.1, 92.8, 2.4]
|
|
525
|
+
- [4, 86.8, 91.2, 2.0]
|
|
526
|
+
- [5, 87.7, 93.5, 2.5]
|
|
527
|
+
id_reference: "dt_response_time_run1"
|
|
528
|
+
tags: ["demo-complete-workflow", "run1"]
|
|
529
|
+
|
|
530
|
+
- type: "data_table"
|
|
531
|
+
name: "Thermal Profile - Run 1"
|
|
532
|
+
properties:
|
|
533
|
+
description: "Temperature over time during thermal test"
|
|
534
|
+
test_result_id: "${tr_acs_run1_thermal}"
|
|
535
|
+
columns:
|
|
536
|
+
- name: "elapsed_minutes"
|
|
537
|
+
type: "number"
|
|
538
|
+
unit: "minutes"
|
|
539
|
+
- name: "internal_temperature_c"
|
|
540
|
+
type: "number"
|
|
541
|
+
unit: "°C"
|
|
542
|
+
- name: "case_temperature_c"
|
|
543
|
+
type: "number"
|
|
544
|
+
unit: "°C"
|
|
545
|
+
- name: "ambient_temperature_c"
|
|
546
|
+
type: "number"
|
|
547
|
+
unit: "°C"
|
|
548
|
+
row_count: 33
|
|
549
|
+
sample_rows:
|
|
550
|
+
- [0, 22.8, 23.0, 22.5]
|
|
551
|
+
- [5, 35.2, 34.8, 22.4]
|
|
552
|
+
- [10, 48.5, 47.2, 22.5]
|
|
553
|
+
- [15, 58.6, 56.3, 22.5]
|
|
554
|
+
- [30, 68.3, 65.1, 22.6]
|
|
555
|
+
id_reference: "dt_thermal_run1"
|
|
556
|
+
tags: ["demo-complete-workflow", "run1"]
|
|
557
|
+
|
|
558
|
+
- type: "data_table"
|
|
559
|
+
name: "Voltage Regression Results - Run 2"
|
|
560
|
+
properties:
|
|
561
|
+
description: "Regression comparison for Run 2 against baseline"
|
|
562
|
+
test_result_id: "${tr_acs_run2_regression}"
|
|
563
|
+
columns:
|
|
564
|
+
- name: "load_amps"
|
|
565
|
+
type: "number"
|
|
566
|
+
unit: "A"
|
|
567
|
+
- name: "run1_voltage_v"
|
|
568
|
+
type: "number"
|
|
569
|
+
unit: "V"
|
|
570
|
+
- name: "run2_voltage_v"
|
|
571
|
+
type: "number"
|
|
572
|
+
unit: "V"
|
|
573
|
+
- name: "delta_mv"
|
|
574
|
+
type: "number"
|
|
575
|
+
unit: "mV"
|
|
576
|
+
- name: "regression_status"
|
|
577
|
+
type: "string"
|
|
578
|
+
row_count: 5
|
|
579
|
+
sample_rows:
|
|
580
|
+
- [0.0, 12.00, 12.01, 10, "NO_REGRESSION"]
|
|
581
|
+
- [1.0, 11.99, 11.98, -10, "NO_REGRESSION"]
|
|
582
|
+
- [2.0, 11.98, 11.97, -10, "NO_REGRESSION"]
|
|
583
|
+
- [3.0, 11.97, 11.96, -10, "NO_REGRESSION"]
|
|
584
|
+
- [5.0, 11.98, 11.97, -10, "NO_REGRESSION"]
|
|
585
|
+
id_reference: "dt_voltage_reg_run2"
|
|
586
|
+
tags: ["demo-complete-workflow", "run2"]
|
|
587
|
+
|
|
588
|
+
# Phase 12: Files (test logs, reports, raw data)
|
|
589
|
+
- type: "file"
|
|
590
|
+
name: "voltage_regulation_run1.csv"
|
|
591
|
+
properties:
|
|
592
|
+
description: "Voltage regulation test data for Run 1"
|
|
593
|
+
test_result_id: "${tr_acs_run1_voltage}"
|
|
594
|
+
content_type: "text/csv"
|
|
595
|
+
size_bytes: 2048
|
|
596
|
+
created_date: "2025-12-18T08:35:00Z"
|
|
597
|
+
file_category: "test_data"
|
|
598
|
+
id_reference: "f_voltage_run1"
|
|
599
|
+
tags: ["demo-complete-workflow", "run1"]
|
|
600
|
+
|
|
601
|
+
- type: "file"
|
|
602
|
+
name: "test_log_run1_complete.txt"
|
|
603
|
+
properties:
|
|
604
|
+
description: "Complete test execution log for Run 1"
|
|
605
|
+
work_item_id: "${wi_acs_run1}"
|
|
606
|
+
content_type: "text/plain"
|
|
607
|
+
size_bytes: 5120
|
|
608
|
+
created_date: "2025-12-18T09:30:00Z"
|
|
609
|
+
file_category: "test_log"
|
|
610
|
+
log_entries: 156
|
|
611
|
+
id_reference: "f_test_log_run1"
|
|
612
|
+
tags: ["demo-complete-workflow", "run1"]
|
|
613
|
+
|
|
614
|
+
- type: "file"
|
|
615
|
+
name: "campaign_summary_report.pdf"
|
|
616
|
+
properties:
|
|
617
|
+
description: "Executive summary report for validation campaign"
|
|
618
|
+
work_order_id: "${wo_acs_campaign}"
|
|
619
|
+
content_type: "application/pdf"
|
|
620
|
+
size_bytes: 512000
|
|
621
|
+
created_date: "2025-12-18T10:15:00Z"
|
|
622
|
+
file_category: "report"
|
|
623
|
+
pages: 12
|
|
624
|
+
id_reference: "f_campaign_report"
|
|
625
|
+
tags: ["demo-complete-workflow"]
|
|
626
|
+
|
|
627
|
+
- type: "file"
|
|
628
|
+
name: "test_matrix_completed.xlsx"
|
|
629
|
+
properties:
|
|
630
|
+
description: "Completed test matrix with all results cross-referenced"
|
|
631
|
+
work_order_id: "${wo_acs_campaign}"
|
|
632
|
+
content_type: "application/vnd.ms-excel"
|
|
633
|
+
size_bytes: 256000
|
|
634
|
+
created_date: "2025-12-18T10:20:00Z"
|
|
635
|
+
file_category: "report"
|
|
636
|
+
sheets: 5
|
|
637
|
+
id_reference: "f_test_matrix"
|
|
638
|
+
tags: ["demo-complete-workflow"]
|