Skip to content

Commit faf684a

Browse files
authored
chore: add verdaccio publishing tests to CI (aws#276)
resolves aws#123 To validate that everything always works, running the integration tests directly from npm will replicate exactly how customers would use this. It will also verify that all dependencies of the clients can be satisfied from npm. Finally, it exercises the publishing process to make sure that each release could be published automatically.
1 parent 44475b5 commit faf684a

File tree

21 files changed

+1744
-146
lines changed

21 files changed

+1744
-146
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,9 @@ coverage
3131
/tsconfig.json
3232
/tsconfig.module.json
3333
package.json.decrypt
34+
35+
# verdaccio
36+
/verdaccio/storage
37+
38+
# local npx cache
39+
/verdaccio/.npx

buildspec.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ phases:
1111
commands:
1212
- npm test
1313
- npm run test_conditions
14-
- npm run integration
14+
- npm run verdaccio

karma.conf.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Karma configuration
2-
process.env.CHROME_BIN = require('puppeteer').executablePath()
32

43
module.exports = function (config) {
54
config.set({

modules/caching-materials-manager-browser/karma.conf.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Karma configuration
2-
process.env.CHROME_BIN = require('puppeteer').executablePath()
32

43
module.exports = function (config) {
54
config.set({

modules/decrypt-browser/karma.conf.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Karma configuration
2-
process.env.CHROME_BIN = require('puppeteer').executablePath()
32

43
module.exports = function (config) {
54
config.set({

modules/encrypt-browser/karma.conf.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Karma configuration
2-
process.env.CHROME_BIN = require('puppeteer').executablePath()
32

43
module.exports = function (config) {
54
config.set({

modules/example-browser/karma.conf.js

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ const webpack = require('webpack')
22
const {defaultProvider} = require('@aws-sdk/credential-provider-node')
33

44
// Karma configuration
5-
process.env.CHROME_BIN = require('puppeteer').executablePath()
65

76
module.exports = function (config) {
87
config.set({

modules/integration-browser/karma.conf.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Karma configuration
2-
process.env.CHROME_BIN = require('puppeteer').executablePath()
32
const { readFileSync } = require('fs')
43

54
module.exports = function (config) {
@@ -55,7 +54,13 @@ module.exports = function (config) {
5554
customLaunchers: {
5655
ChromeHeadlessDisableCors: {
5756
base: 'ChromeHeadless',
58-
flags: ['--disable-web-security', '--no-sandbox']
57+
flags: [
58+
'--headless',
59+
'--disable-web-security',
60+
'--no-sandbox',
61+
'--disable-setuid-sandbox',
62+
'--enable-logging',
63+
]
5964
}
6065
},
6166
singleRun: true,

modules/integration-browser/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
"karma-json-fixtures-preprocessor": "0.0.6",
3333
"karma-webpack": "^4.0.2",
3434
"karma-parallel": "^0.3.1",
35-
"puppeteer": "^2.1.1",
3635
"stream-to-promise": "^2.2.0",
3736
"tslib": "^1.9.3",
3837
"yauzl": "^2.10.0",

modules/kms-keyring-browser/karma.conf.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Karma configuration
2-
process.env.CHROME_BIN = require('puppeteer').executablePath()
32

43
module.exports = function (config) {
54
config.set({

modules/material-management-browser/karma.conf.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Karma configuration
2-
process.env.CHROME_BIN = require('puppeteer').executablePath()
32

43
module.exports = function (config) {
54
config.set({

modules/raw-aes-keyring-browser/karma.conf.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Karma configuration
2-
process.env.CHROME_BIN = require('puppeteer').executablePath()
32

43
module.exports = function (config) {
54
config.set({

modules/raw-rsa-keyring-browser/karma.conf.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Karma configuration
2-
process.env.CHROME_BIN = require('puppeteer').executablePath()
32

43
module.exports = function (config) {
54
config.set({

modules/web-crypto-backend/karma.conf.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Karma configuration
2-
process.env.CHROME_BIN = require('puppeteer').executablePath()
32

43
module.exports = function (config) {
54
config.set({

0 commit comments

Comments
 (0)