diff --git a/test/functional/store/config-1.yaml b/test/functional/store/config-1.yaml index b3961ffe8..f55c0ba9e 100644 --- a/test/functional/store/config-1.yaml +++ b/test/functional/store/config-1.yaml @@ -30,95 +30,95 @@ logs: packages: '@test/*': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy: server2 'testfwd*': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy_access: server2 proxy_publish: server2 'testloop': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy_access: server2 proxy_publish: server2 'testexp': - allow_access: $anonymous + access: $anonymous # used by tags.spec.js 'testexp_tag*': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy_access: express # used by gzip.spec.js 'testexp_gzi*': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy_access: express # used by gh29.js 'testpkg-gh29': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy_access: express # used by preserve_tags_spec.js 'testpkg-preserve': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy_access: express # used by racycrash.js 'testexp-racycrash': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy_access: express # used by incomplete.js 'testexp-incomplete': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy_access: express 'test-nullstorage*': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy_access: server2 storage: false 'baduplink': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy_access: baduplink 'test-access-only': - allow_access: $all - allow_publish: nobody + access: $all + publish: nobody storage: false 'test-publish-only': - allow_access: nobody - allow_publish: $all + access: nobody + publish: $all storage: false 'test-only-test': - allow_access: test - allow_publish: test + access: test + publish: test storage: false 'test-only-auth': - allow_access: $authenticated - allow_publish: $authenticated + access: $authenticated + publish: $authenticated storage: false '*': - allow_access: test $anonymous - allow_publish: test $anonymous + access: test $anonymous + publish: test $anonymous listen: 55551 diff --git a/test/functional/store/config-2.yaml b/test/functional/store/config-2.yaml index 45be27aca..0a760de39 100644 --- a/test/functional/store/config-2.yaml +++ b/test/functional/store/config-2.yaml @@ -33,58 +33,58 @@ logs: packages: '@test/*': - allow_access: $all - allow_publish: $all + access: $all + publish: $all proxy: server1 'testfwd': - allow_access: $all - allow_publish: $all + access: $all + publish: $all 'testloop': - allow_access: $all - allow_publish: $all - proxy_access: server1 + access: $all + publish: $all + proxy: server1 proxy_publish: server1 # used by gh29.js 'testpkg-gh29': - allow_access: test $anonymous - allow_publish: test $anonymous - proxy_access: server1 + access: test $anonymous + publish: test $anonymous + proxy: server1 # used by preserve_tags_spec.js 'testpkg-preserve': - allow_access: test $anonymous - allow_publish: test $anonymous - proxy_access: server1 + access: test $anonymous + publish: test $anonymous + proxy: server1 'testpkg': - allow_access: test $anonymous - allow_publish: test $anonymous - proxy_access: server1 + access: test $anonymous + publish: test $anonymous + proxy: server1 'readme-*': - allow_access: test $anonymous - allow_publish: test $anonymous - proxy_access: server1 + access: test $anonymous + publish: test $anonymous + proxy: server1 'test-nullstorage*': - allow_access: $all - allow_publish: $all + access: $all + publish: $all 'test-auth-regular': - allow_access: $authenticated + access: $authenticated 'test-auth-*': - allow_access: authtest + access: authtest 'test-deny': - allow_access: authtest2 + access: authtest2 '*': - allow_access: test $anonymous - allow_publish: test $anonymous + access: test $anonymous + publish: test $anonymous listen: 55552