Setting up Open CMIS TCK

This commit is contained in:
2026-05-08 00:02:20 +02:00
parent 1ef1955fa0
commit 062af60af9
12 changed files with 433 additions and 38 deletions

View File

@@ -47,6 +47,10 @@
"{run_dir}",
"--extension-path",
"{extension_path}",
"--credentials-ref",
"{credentials_ref}",
"--target-profile-dir",
"{target_profile_dir}",
"--timeout-seconds",
"{timeout_seconds}"
]

View File

@@ -0,0 +1,23 @@
{
"id": "cmis-browser-anonymous-template",
"subject_type": "cmis-browser-binding-endpoint",
"subject_name": "Anonymous CMIS Browser Binding target",
"environment": "local",
"scope": [
"CMIS 1.1 Browser Binding compatibility preparation"
],
"endpoints": [
{
"id": "browser-binding",
"url": "http://127.0.0.1:8080/cmis/browser",
"binding": "cmis-browser"
}
],
"artifacts": [],
"credentials_ref": null,
"declared_capabilities": [
"cmis.repository-info",
"cmis.type-definitions"
],
"known_gaps": []
}

View File

@@ -0,0 +1,23 @@
{
"id": "cmis-browser-basic-auth-env-template",
"subject_type": "cmis-browser-binding-endpoint",
"subject_name": "Basic-auth CMIS Browser Binding target",
"environment": "local",
"scope": [
"CMIS 1.1 Browser Binding compatibility preparation"
],
"endpoints": [
{
"id": "browser-binding",
"url": "http://127.0.0.1:8080/cmis/browser",
"binding": "cmis-browser"
}
],
"artifacts": [],
"credentials_ref": "env:CMIS_TCK_USER,CMIS_TCK_PASSWORD",
"declared_capabilities": [
"cmis.repository-info",
"cmis.type-definitions"
],
"known_gaps": []
}

View File

@@ -0,0 +1,23 @@
{
"id": "cmis-browser-basic-auth-file-template",
"subject_type": "cmis-browser-binding-endpoint",
"subject_name": "File-credential CMIS Browser Binding target",
"environment": "local",
"scope": [
"CMIS 1.1 Browser Binding compatibility preparation"
],
"endpoints": [
{
"id": "browser-binding",
"url": "http://127.0.0.1:8080/cmis/browser",
"binding": "cmis-browser"
}
],
"artifacts": [],
"credentials_ref": "file:/absolute/path/to/cmis-tck-credentials.json",
"declared_capabilities": [
"cmis.repository-info",
"cmis.type-definitions"
],
"known_gaps": []
}

View File

@@ -0,0 +1,4 @@
{
"user": "cmis-user",
"password": "replace-with-local-secret"
}