Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
rhafer committed Apr 26, 2022
1 parent 79791e7 commit fb97946
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ def uiTestPipeline(ctx, filterTags, early_fail, runPart = 1, numberOfParts = 1,
"git checkout $WEB_COMMITID",
"cd tests/acceptance/",
"yarn install --immutable",
"./run.sh",
"yarn cucumber-js --retry 1 --require-module @babel/register --require-module @babel/polyfill --require setup.js --require stepDefinitions --format @cucumber/pretty-formatter features/webUICreateFilesFolders/createFolders.feature:72",
],
},
] + failEarly(ctx, early_fail),
Expand Down Expand Up @@ -1633,12 +1633,12 @@ def ocisServerWithAccounts(storage, accounts_hash_difficulty = 4, volumes = [],
"LDAP_INSECURE": "true",
"LDAP_BIND_DN": "cn=admin,dc=ocis,dc=test",
"LDAP_BIND_PASSWORD": "admin",
"LDAP_USER_BASE_DN": "ou=users,dc=ocis,dc=test",
"LDAP_USER_BASE_DN": "dc=ocis,dc=test",
"LDAP_USER_SCHEMA_ID": "ownclouduuid",
"LDAP_USER_SCHEMA_MAIL": "mail",
"LDAP_USER_SCHEMA_USERNAME": "cn",
"LDAP_USER_OBJECTCLASS": "posixAccount",
"LDAP_GROUP_BASE_DN": "ou=groups,dc=ocis,dc=test",
"LDAP_GROUP_BASE_DN": "dc=ocis,dc=test",
"LDAP_GROUP_SCHEMA_ID": "cn",
"LDAP_GROUP_SCHEMA_MAIL": "mail",
"LDAP_GROUP_SCHEMA_GROUPNAME": "cn",
Expand All @@ -1654,8 +1654,9 @@ def ocisServerWithAccounts(storage, accounts_hash_difficulty = 4, volumes = [],
"OCIS_INSECURE": "true",
"PROXY_ENABLE_BASIC_AUTH": "true",
"IDP_INSECURE": "true",
"OCIS_LOG_LEVEL": "error",
"OCIS_LOG_LEVEL": "debug",
"OCIS_URL": "https://ocis-server:9200",
"ACCOUNTS_DEMO_USERS_AND_GROUPS": True,
"STORAGE_HOME_DRIVER": "%s" % (storage),
"STORAGE_USERS_DRIVER": "%s" % (storage),
}
Expand All @@ -1681,11 +1682,11 @@ def ocisServerWithAccounts(storage, accounts_hash_difficulty = 4, volumes = [],
},
{
"name": "wait-for-ocis-server",
"image": OC_CI_WAIT_FOR,
"image": OC_CI_ALPINE,
"commands": [
"wait-for -it ocis-server:9200 -t 300",
"curl -k -u admin:admin --fail --retry-connrefused --retry 10 --retry-all-errors 'https://ocis-server:9200/graph/v1.0/users/ddc2004c-0977-11eb-9d3f-a793888cd0f8'",
],
"depends_on": [],
"depends_on": depends_on,
},
]

Expand Down

0 comments on commit fb97946

Please sign in to comment.