Files
open-cmis-tck/README.md

2.1 KiB

open-cmis-tck

open-cmis-tck is the CMIS conformance-preparation extension for guide-board. It keeps CMIS-specific runner code, profiles, capability mappings, and workplans outside the generic framework repo.

This extension does not issue certifications. It produces preparation evidence that can support compatibility reviews and future certification work.

Relationship To Guide Board

Use this repo as an external extension root:

cd ../guide-board
PYTHONPATH=src python3 -m guide_board \
  --extension-dir ../open-cmis-tck \
  extensions list

The extension root is this repository directory. It exposes:

  • extension.json
  • src/open_cmis_tck/preflight.py
  • runners/opencmis_tck.py
  • mappings/cmis-capability-map.json
  • CMIS sample profiles under profiles/

Local Baseline

From the guide-board repo:

PYTHONPATH=src python3 -m guide_board \
  --extension-dir ../open-cmis-tck \
  plan \
  --target ../open-cmis-tck/profiles/targets/kontextual-cmis-compat.json \
  --assessment ../open-cmis-tck/profiles/assessments/cmis-browser-baseline.json

To run the current baseline:

PYTHONPATH=src python3 -m guide_board \
  --extension-dir ../open-cmis-tck \
  run \
  --target ../open-cmis-tck/profiles/targets/kontextual-cmis-compat.json \
  --assessment ../open-cmis-tck/profiles/assessments/cmis-browser-baseline.json \
  --output-dir /tmp/open-cmis-tck-baseline

Expected current behavior:

  • CMIS Browser Binding preflight runs first.
  • Failed preflight blocks downstream TCK groups.
  • The Java/Maven OpenCMIS wrapper reports structured blockers until the final Apache Chemistry TCK invocation is configured.

Tests

Run extension tests with the guide-board core on PYTHONPATH:

PYTHONPATH=../guide-board/src python3 -m unittest discover -s tests

Boundary

Apache Chemistry/OpenCMIS TCK dependencies may be restricted by upstream licensing or distribution constraints. This repo records the extension boundary and wrapper interface, but restricted harness assets should be resolved or mounted explicitly by the user or by a future extension-specific image.