@corellium/corellium-cli 1.0.3 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -17
- package/docs/OVERVIEW.md +1 -1
- package/jenkinsbuild/build.sh +1 -1
- package/package.json +3 -3
- package/src/TrialAccount.js +76 -0
- package/src/commands/Client.js +2 -2
- package/src/commands/agent/Agent.js +10 -19
- package/src/commands/agent/apps.js +2 -1
- package/src/commands/agent/file.js +2 -1
- package/src/commands/agent/index.js +1 -0
- package/src/commands/agent/ready.js +43 -0
- package/src/commands/extensions/delete.js +2 -1
- package/src/commands/extensions/list.js +2 -1
- package/src/commands/extensions/load.js +2 -1
- package/src/commands/extensions/validate.js +2 -1
- package/src/commands/firmware/list.js +2 -1
- package/src/commands/firmware/load.js +2 -1
- package/src/commands/images/create.js +2 -1
- package/src/commands/images/delete.js +2 -1
- package/src/commands/images/list.js +2 -1
- package/src/commands/instances/Instance.js +27 -0
- package/src/commands/instances/create.js +11 -4
- package/src/commands/instances/delete.js +20 -5
- package/src/commands/instances/index.js +2 -1
- package/src/commands/instances/list.js +11 -5
- package/src/commands/instances/start.js +2 -1
- package/src/commands/instances/stop.js +2 -1
- package/src/commands/instances/upgrade.js +90 -0
- package/src/commands/login.js +14 -2
- package/src/commands/logout.js +2 -1
- package/src/commands/projects/create.js +2 -1
- package/src/commands/projects/delete.js +2 -1
- package/src/commands/projects/list.js +2 -1
- package/src/commands/signup.js +14 -5
- package/src/commands/webplayer/WebPlayer.js +2 -1
- package/src/commands/webplayer/create.js +8 -1
- package/src/commands/webplayer/destroy.js +2 -1
- package/src/commands/webplayer/list.js +19 -17
- package/src/commands/webplayer/login.js +2 -1
- package/src/error.js +14 -1
- package/src/logging.js +1 -1
- package/src/profile.js +12 -9
- package/src/resumable.js +1314 -0
- package/src/table.js +7 -2
- package/src/upload.js +64 -2
- package/src/utils.js +11 -4
- package/test/test.js +89 -0
- package/example/WebPlayerSample.js +0 -263
- package/node_modules/@corellium/corellium-api/README.md +0 -1210
- package/node_modules/@corellium/corellium-api/node_modules/form-data/License +0 -19
- package/node_modules/@corellium/corellium-api/node_modules/form-data/README.md.bak +0 -356
- package/node_modules/@corellium/corellium-api/node_modules/form-data/Readme.md +0 -356
- package/node_modules/@corellium/corellium-api/node_modules/form-data/index.d.ts +0 -62
- package/node_modules/@corellium/corellium-api/node_modules/form-data/lib/browser.js +0 -2
- package/node_modules/@corellium/corellium-api/node_modules/form-data/lib/form_data.js +0 -498
- package/node_modules/@corellium/corellium-api/node_modules/form-data/lib/populate.js +0 -10
- package/node_modules/@corellium/corellium-api/node_modules/form-data/package.json +0 -104
- package/node_modules/@corellium/corellium-api/node_modules/uuid/AUTHORS +0 -5
- package/node_modules/@corellium/corellium-api/node_modules/uuid/CHANGELOG.md +0 -119
- package/node_modules/@corellium/corellium-api/node_modules/uuid/LICENSE.md +0 -21
- package/node_modules/@corellium/corellium-api/node_modules/uuid/README.md +0 -276
- package/node_modules/@corellium/corellium-api/node_modules/uuid/bin/uuid +0 -65
- package/node_modules/@corellium/corellium-api/node_modules/uuid/index.js +0 -8
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/bytesToUuid.js +0 -26
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/md5-browser.js +0 -216
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/md5.js +0 -25
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/rng-browser.js +0 -34
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/rng.js +0 -8
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/sha1-browser.js +0 -89
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/sha1.js +0 -25
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/v35.js +0 -57
- package/node_modules/@corellium/corellium-api/node_modules/uuid/package.json +0 -103
- package/node_modules/@corellium/corellium-api/node_modules/uuid/v1.js +0 -109
- package/node_modules/@corellium/corellium-api/node_modules/uuid/v3.js +0 -4
- package/node_modules/@corellium/corellium-api/node_modules/uuid/v4.js +0 -29
- package/node_modules/@corellium/corellium-api/node_modules/uuid/v5.js +0 -3
- package/node_modules/@corellium/corellium-api/package.json +0 -106
- package/node_modules/@corellium/corellium-api/resumable.js +0 -1312
- package/node_modules/@corellium/corellium-api/src/agent.js +0 -962
- package/node_modules/@corellium/corellium-api/src/corellium.js +0 -444
- package/node_modules/@corellium/corellium-api/src/images.js +0 -131
- package/node_modules/@corellium/corellium-api/src/input.js +0 -178
- package/node_modules/@corellium/corellium-api/src/instance-updater.js +0 -56
- package/node_modules/@corellium/corellium-api/src/instance.js +0 -1031
- package/node_modules/@corellium/corellium-api/src/netmon.js +0 -308
- package/node_modules/@corellium/corellium-api/src/project.js +0 -393
- package/node_modules/@corellium/corellium-api/src/role.js +0 -65
- package/node_modules/@corellium/corellium-api/src/snapshot.js +0 -77
- package/node_modules/@corellium/corellium-api/src/team.js +0 -29
- package/node_modules/@corellium/corellium-api/src/user.js +0 -51
- package/node_modules/@corellium/corellium-api/src/util/fetch.js +0 -62
- package/node_modules/@corellium/corellium-api/src/util/sleep.js +0 -7
- package/node_modules/@corellium/corellium-api/test/integration-tests.js +0 -1292
- package/node_modules/@corellium/corellium-api/test/root-hook-set-flag-if-test-failed.js +0 -7
- package/node_modules/async-limiter/.eslintignore +0 -2
- package/node_modules/async-limiter/.nycrc +0 -10
- package/node_modules/async-limiter/.travis.yml +0 -9
- package/node_modules/async-limiter/LICENSE +0 -8
- package/node_modules/async-limiter/index.js +0 -67
- package/node_modules/async-limiter/package.json +0 -72
- package/node_modules/async-limiter/readme.md +0 -132
- package/node_modules/buffer-crc32/LICENSE +0 -19
- package/node_modules/buffer-crc32/README.md +0 -47
- package/node_modules/buffer-crc32/index.js +0 -111
- package/node_modules/buffer-crc32/package.json +0 -72
- package/node_modules/cross-fetch/LICENSE +0 -21
- package/node_modules/cross-fetch/README.md +0 -169
- package/node_modules/cross-fetch/dist/browser-polyfill.js +0 -532
- package/node_modules/cross-fetch/dist/browser-ponyfill.js +0 -554
- package/node_modules/cross-fetch/dist/cross-fetch.js +0 -2
- package/node_modules/cross-fetch/dist/cross-fetch.js.map +0 -1
- package/node_modules/cross-fetch/dist/node-polyfill.js +0 -11
- package/node_modules/cross-fetch/dist/node-ponyfill.js +0 -22
- package/node_modules/cross-fetch/dist/react-native-polyfill.js +0 -12
- package/node_modules/cross-fetch/dist/react-native-ponyfill.js +0 -6
- package/node_modules/cross-fetch/index.d.ts +0 -14
- package/node_modules/cross-fetch/package.json +0 -160
- package/node_modules/cross-fetch/polyfill/package.json +0 -8
- package/node_modules/duplexify/.travis.yml +0 -6
- package/node_modules/duplexify/LICENSE +0 -21
- package/node_modules/duplexify/README.md +0 -97
- package/node_modules/duplexify/example.js +0 -21
- package/node_modules/duplexify/index.js +0 -234
- package/node_modules/duplexify/package.json +0 -69
- package/node_modules/duplexify/test.js +0 -295
- package/node_modules/end-of-stream/LICENSE +0 -21
- package/node_modules/end-of-stream/README.md +0 -54
- package/node_modules/end-of-stream/index.js +0 -94
- package/node_modules/end-of-stream/package.json +0 -69
- package/node_modules/fast-stable-stringify/.npmignore +0 -4
- package/node_modules/fast-stable-stringify/.travis.yml +0 -10
- package/node_modules/fast-stable-stringify/LICENSE +0 -21
- package/node_modules/fast-stable-stringify/README.md +0 -81
- package/node_modules/fast-stable-stringify/cli/files-to-comparison-results.js +0 -67
- package/node_modules/fast-stable-stringify/cli/format-table.js +0 -70
- package/node_modules/fast-stable-stringify/cli/index.js +0 -19
- package/node_modules/fast-stable-stringify/fixtures/index.js +0 -5
- package/node_modules/fast-stable-stringify/fixtures/input-data-types.js +0 -191
- package/node_modules/fast-stable-stringify/fixtures/log-result.json +0 -22
- package/node_modules/fast-stable-stringify/fixtures/log.txt +0 -24
- package/node_modules/fast-stable-stringify/index.js +0 -73
- package/node_modules/fast-stable-stringify/karma.conf.js +0 -124
- package/node_modules/fast-stable-stringify/karma.conf.travis.js +0 -95
- package/node_modules/fast-stable-stringify/package.json +0 -77
- package/node_modules/fast-stable-stringify/results/escape-long/Chrome 60.0.3112 (Windows 7 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-long/Chrome Mobile 55.0.2883 (Android 6.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-long/Edge 14.14393.0 (Windows 10 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-long/Firefox 54.0.0 (Windows 7 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-long/IE 10.0.0 (Windows 7 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-long/IE 11.0.0 (Windows 7 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-long/IE 9.0.0 (Windows 7 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-long/Mobile Safari 10.0.0 (iOS 10.3.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-long/Safari 10.0.1 (Mac OS X 10.12.1).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-short/Chrome 60.0.3112 (Windows 7 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-short/Chrome Mobile 55.0.2883 (Android 6.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-short/Edge 14.14393.0 (Windows 10 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-short/Firefox 54.0.0 (Windows 7 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-short/IE 10.0.0 (Windows 7 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-short/IE 11.0.0 (Windows 7 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-short/IE 9.0.0 (Windows 7 0.0.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-short/Mobile Safari 10.0.0 (iOS 10.3.0).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape-short/Safari 10.0.1 (Mac OS X 10.12.1).json +0 -57
- package/node_modules/fast-stable-stringify/results/escape.md +0 -20
- package/node_modules/fast-stable-stringify/results/itar-long/Chrome 60.0.3112 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-long/Chrome Mobile 55.0.2883 (Android 6.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-long/Edge 14.14393.0 (Windows 10 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-long/Firefox 54.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-long/IE 10.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-long/IE 11.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-long/IE 9.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-long/Mobile Safari 10.0.0 (iOS 10.3.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-long/Safari 10.0.1 (Mac OS X 10.12.1).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-short/Chrome 60.0.3112 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-short/Chrome Mobile 55.0.2883 (Android 6.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-short/Edge 14.14393.0 (Windows 10 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-short/Firefox 54.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-short/IE 10.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-short/IE 11.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-short/IE 9.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-short/Mobile Safari 10.0.0 (iOS 10.3.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar-short/Safari 10.0.1 (Mac OS X 10.12.1).json +0 -35
- package/node_modules/fast-stable-stringify/results/itar.md +0 -20
- package/node_modules/fast-stable-stringify/results/iter/Chrome 60.0.3112 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter/Chrome Mobile 39.0.0 (Android 5.1.1).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter/Chrome Mobile 55.0.2883 (Android 6.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter/Edge 14.14393.0 (Windows 10 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter/Firefox 54.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter/IE 10.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter/IE 11.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter/IE 9.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter/Mobile Safari 10.0.0 (iOS 10.3.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter/Mobile Safari 9.0.0 (iOS 9.2.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter/Safari 10.0.1 (Mac OS X 10.12.1).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter/Safari 9.1.2 (Mac OS X 10.11.6).json +0 -35
- package/node_modules/fast-stable-stringify/results/iter.md +0 -14
- package/node_modules/fast-stable-stringify/results/libs/Chrome 60.0.3112 (Windows 7 0.0.0).json +0 -46
- package/node_modules/fast-stable-stringify/results/libs/Chrome Mobile 55.0.2883 (Android 6.0.0).json +0 -46
- package/node_modules/fast-stable-stringify/results/libs/Edge 14.14393.0 (Windows 10 0.0.0).json +0 -46
- package/node_modules/fast-stable-stringify/results/libs/Firefox 54.0.0 (Windows 7 0.0.0).json +0 -46
- package/node_modules/fast-stable-stringify/results/libs/IE 10.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/libs/IE 11.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/libs/IE 9.0.0 (Windows 7 0.0.0).json +0 -35
- package/node_modules/fast-stable-stringify/results/libs/Mobile Safari 10.0.0 (iOS 10.3.0).json +0 -46
- package/node_modules/fast-stable-stringify/results/libs/Safari 10.0.1 (Mac OS X 10.12.1).json +0 -46
- package/node_modules/fast-stable-stringify/results/libs.md +0 -15
- package/node_modules/fast-stable-stringify/test/escape-long.js +0 -147
- package/node_modules/fast-stable-stringify/test/escape-short.js +0 -147
- package/node_modules/fast-stable-stringify/test/index.js +0 -6
- package/node_modules/fast-stable-stringify/test/itar-long.js +0 -52
- package/node_modules/fast-stable-stringify/test/itar-short.js +0 -52
- package/node_modules/fast-stable-stringify/test/iter.js +0 -84
- package/node_modules/fast-stable-stringify/test/libs.js +0 -57
- package/node_modules/fast-stable-stringify/test/travis.js +0 -43
- package/node_modules/fast-stable-stringify/test/validate.js +0 -24
- package/node_modules/fast-stable-stringify/util/eachRecursive.js +0 -9
- package/node_modules/fast-stable-stringify/util/get-git-hash-sync.js +0 -21
- package/node_modules/fast-stable-stringify/util/get-lib-info.js +0 -22
- package/node_modules/fast-stable-stringify/util/object-path.js +0 -47
- package/node_modules/fast-stable-stringify/v8-profile/bench.js +0 -8
- package/node_modules/fast-stable-stringify/v8-profile/run.sh +0 -2
- package/node_modules/fast-stable-stringify/zuul-local.sh +0 -2
- package/node_modules/hkdf/.npmignore +0 -2
- package/node_modules/hkdf/README.md +0 -23
- package/node_modules/hkdf/hkdf.py +0 -171
- package/node_modules/hkdf/hkdf.pyc +0 -0
- package/node_modules/hkdf/index.js +0 -1
- package/node_modules/hkdf/lib/hkdf.js +0 -55
- package/node_modules/hkdf/package.json +0 -55
- package/node_modules/hkdf/scripts/run_all_tests.sh +0 -19
- package/node_modules/hkdf/test/all-test.js +0 -79
- package/node_modules/hkdf/test.py +0 -11
- package/node_modules/immediate/LICENSE.txt +0 -20
- package/node_modules/immediate/README.md +0 -93
- package/node_modules/immediate/dist/immediate.js +0 -75
- package/node_modules/immediate/dist/immediate.min.js +0 -1
- package/node_modules/immediate/lib/browser.js +0 -69
- package/node_modules/immediate/lib/index.js +0 -73
- package/node_modules/immediate/package.json +0 -86
- package/node_modules/isarray/.npmignore +0 -1
- package/node_modules/isarray/.travis.yml +0 -4
- package/node_modules/isarray/Makefile +0 -6
- package/node_modules/isarray/README.md +0 -60
- package/node_modules/isarray/component.json +0 -19
- package/node_modules/isarray/index.js +0 -5
- package/node_modules/isarray/package.json +0 -77
- package/node_modules/isarray/test.js +0 -20
- package/node_modules/jszip/.codeclimate.yml +0 -16
- package/node_modules/jszip/.editorconfig +0 -8
- package/node_modules/jszip/.github/workflows/pr.yaml +0 -41
- package/node_modules/jszip/.jshintignore +0 -1
- package/node_modules/jszip/.jshintrc +0 -21
- package/node_modules/jszip/.travis.yml +0 -17
- package/node_modules/jszip/CHANGES.md +0 -192
- package/node_modules/jszip/LICENSE.markdown +0 -651
- package/node_modules/jszip/README.markdown +0 -33
- package/node_modules/jszip/dist/jszip.js +0 -11583
- package/node_modules/jszip/dist/jszip.min.js +0 -13
- package/node_modules/jszip/index.d.ts +0 -335
- package/node_modules/jszip/lib/base64.js +0 -106
- package/node_modules/jszip/lib/compressedObject.js +0 -74
- package/node_modules/jszip/lib/compressions.js +0 -14
- package/node_modules/jszip/lib/crc32.js +0 -77
- package/node_modules/jszip/lib/defaults.js +0 -11
- package/node_modules/jszip/lib/external.js +0 -19
- package/node_modules/jszip/lib/flate.js +0 -85
- package/node_modules/jszip/lib/generate/ZipFileWorker.js +0 -540
- package/node_modules/jszip/lib/generate/index.js +0 -57
- package/node_modules/jszip/lib/index.js +0 -55
- package/node_modules/jszip/lib/license_header.js +0 -11
- package/node_modules/jszip/lib/load.js +0 -88
- package/node_modules/jszip/lib/nodejs/NodejsStreamInputAdapter.js +0 -74
- package/node_modules/jszip/lib/nodejs/NodejsStreamOutputAdapter.js +0 -42
- package/node_modules/jszip/lib/nodejsUtils.js +0 -57
- package/node_modules/jszip/lib/object.js +0 -389
- package/node_modules/jszip/lib/readable-stream-browser.js +0 -9
- package/node_modules/jszip/lib/reader/ArrayReader.js +0 -57
- package/node_modules/jszip/lib/reader/DataReader.js +0 -116
- package/node_modules/jszip/lib/reader/NodeBufferReader.js +0 -19
- package/node_modules/jszip/lib/reader/StringReader.js +0 -38
- package/node_modules/jszip/lib/reader/Uint8ArrayReader.js +0 -22
- package/node_modules/jszip/lib/reader/readerFor.js +0 -28
- package/node_modules/jszip/lib/signature.js +0 -7
- package/node_modules/jszip/lib/stream/ConvertWorker.js +0 -26
- package/node_modules/jszip/lib/stream/Crc32Probe.js +0 -24
- package/node_modules/jszip/lib/stream/DataLengthProbe.js +0 -29
- package/node_modules/jszip/lib/stream/DataWorker.js +0 -116
- package/node_modules/jszip/lib/stream/GenericWorker.js +0 -263
- package/node_modules/jszip/lib/stream/StreamHelper.js +0 -212
- package/node_modules/jszip/lib/support.js +0 -38
- package/node_modules/jszip/lib/utf8.js +0 -275
- package/node_modules/jszip/lib/utils.js +0 -501
- package/node_modules/jszip/lib/zipEntries.js +0 -262
- package/node_modules/jszip/lib/zipEntry.js +0 -294
- package/node_modules/jszip/lib/zipObject.js +0 -133
- package/node_modules/jszip/package.json +0 -99
- package/node_modules/jszip/tsconfig.json +0 -101
- package/node_modules/jszip/vendor/FileSaver.js +0 -247
- package/node_modules/lie/README.md +0 -62
- package/node_modules/lie/dist/lie.js +0 -350
- package/node_modules/lie/dist/lie.min.js +0 -1
- package/node_modules/lie/dist/lie.polyfill.js +0 -358
- package/node_modules/lie/dist/lie.polyfill.min.js +0 -1
- package/node_modules/lie/lib/browser.js +0 -273
- package/node_modules/lie/lib/index.js +0 -298
- package/node_modules/lie/license.md +0 -7
- package/node_modules/lie/lie.d.ts +0 -244
- package/node_modules/lie/package.json +0 -98
- package/node_modules/lie/polyfill.js +0 -4
- package/node_modules/p-finally/index.js +0 -15
- package/node_modules/p-finally/license +0 -21
- package/node_modules/p-finally/package.json +0 -77
- package/node_modules/p-finally/readme.md +0 -47
- package/node_modules/p-retry/index.js +0 -52
- package/node_modules/p-retry/license +0 -9
- package/node_modules/p-retry/package.json +0 -83
- package/node_modules/p-retry/readme.md +0 -109
- package/node_modules/p-timeout/index.d.ts +0 -72
- package/node_modules/p-timeout/index.js +0 -57
- package/node_modules/p-timeout/license +0 -9
- package/node_modules/p-timeout/package.json +0 -80
- package/node_modules/p-timeout/readme.md +0 -87
- package/node_modules/pako/CHANGELOG.md +0 -164
- package/node_modules/pako/LICENSE +0 -21
- package/node_modules/pako/README.md +0 -191
- package/node_modules/pako/dist/pako.js +0 -6818
- package/node_modules/pako/dist/pako.min.js +0 -1
- package/node_modules/pako/dist/pako_deflate.js +0 -3997
- package/node_modules/pako/dist/pako_deflate.min.js +0 -1
- package/node_modules/pako/dist/pako_inflate.js +0 -3300
- package/node_modules/pako/dist/pako_inflate.min.js +0 -1
- package/node_modules/pako/index.js +0 -14
- package/node_modules/pako/lib/deflate.js +0 -400
- package/node_modules/pako/lib/inflate.js +0 -423
- package/node_modules/pako/lib/utils/common.js +0 -105
- package/node_modules/pako/lib/utils/strings.js +0 -187
- package/node_modules/pako/lib/zlib/README +0 -59
- package/node_modules/pako/lib/zlib/adler32.js +0 -51
- package/node_modules/pako/lib/zlib/constants.js +0 -68
- package/node_modules/pako/lib/zlib/crc32.js +0 -59
- package/node_modules/pako/lib/zlib/deflate.js +0 -1874
- package/node_modules/pako/lib/zlib/gzheader.js +0 -58
- package/node_modules/pako/lib/zlib/inffast.js +0 -345
- package/node_modules/pako/lib/zlib/inflate.js +0 -1556
- package/node_modules/pako/lib/zlib/inftrees.js +0 -343
- package/node_modules/pako/lib/zlib/messages.js +0 -32
- package/node_modules/pako/lib/zlib/trees.js +0 -1222
- package/node_modules/pako/lib/zlib/zstream.js +0 -47
- package/node_modules/pako/package.json +0 -94
- package/node_modules/process-nextick-args/index.js +0 -45
- package/node_modules/process-nextick-args/license.md +0 -19
- package/node_modules/process-nextick-args/package.json +0 -53
- package/node_modules/process-nextick-args/readme.md +0 -18
- package/node_modules/readable-stream/.travis.yml +0 -34
- package/node_modules/readable-stream/CONTRIBUTING.md +0 -38
- package/node_modules/readable-stream/GOVERNANCE.md +0 -136
- package/node_modules/readable-stream/LICENSE +0 -47
- package/node_modules/readable-stream/README.md +0 -58
- package/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +0 -60
- package/node_modules/readable-stream/duplex-browser.js +0 -1
- package/node_modules/readable-stream/duplex.js +0 -1
- package/node_modules/readable-stream/lib/_stream_duplex.js +0 -131
- package/node_modules/readable-stream/lib/_stream_passthrough.js +0 -47
- package/node_modules/readable-stream/lib/_stream_readable.js +0 -1019
- package/node_modules/readable-stream/lib/_stream_transform.js +0 -214
- package/node_modules/readable-stream/lib/_stream_writable.js +0 -687
- package/node_modules/readable-stream/lib/internal/streams/BufferList.js +0 -79
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +0 -74
- package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +0 -1
- package/node_modules/readable-stream/lib/internal/streams/stream.js +0 -1
- package/node_modules/readable-stream/package.json +0 -86
- package/node_modules/readable-stream/passthrough.js +0 -1
- package/node_modules/readable-stream/readable-browser.js +0 -7
- package/node_modules/readable-stream/readable.js +0 -19
- package/node_modules/readable-stream/transform.js +0 -1
- package/node_modules/readable-stream/writable-browser.js +0 -1
- package/node_modules/readable-stream/writable.js +0 -8
- package/node_modules/retry/.npmignore +0 -3
- package/node_modules/retry/.travis.yml +0 -15
- package/node_modules/retry/License +0 -21
- package/node_modules/retry/Makefile +0 -18
- package/node_modules/retry/README.md +0 -227
- package/node_modules/retry/equation.gif +0 -0
- package/node_modules/retry/example/dns.js +0 -31
- package/node_modules/retry/example/stop.js +0 -40
- package/node_modules/retry/index.js +0 -1
- package/node_modules/retry/lib/retry.js +0 -100
- package/node_modules/retry/lib/retry_operation.js +0 -158
- package/node_modules/retry/package.json +0 -67
- package/node_modules/retry/test/common.js +0 -10
- package/node_modules/retry/test/integration/test-forever.js +0 -24
- package/node_modules/retry/test/integration/test-retry-operation.js +0 -258
- package/node_modules/retry/test/integration/test-retry-wrap.js +0 -101
- package/node_modules/retry/test/integration/test-timeouts.js +0 -69
- package/node_modules/setimmediate/LICENSE.txt +0 -20
- package/node_modules/setimmediate/package.json +0 -77
- package/node_modules/setimmediate/setImmediate.js +0 -186
- package/node_modules/split/.npmignore +0 -3
- package/node_modules/split/.travis.yml +0 -3
- package/node_modules/split/LICENCE +0 -22
- package/node_modules/split/examples/pretty.js +0 -26
- package/node_modules/split/index.js +0 -63
- package/node_modules/split/package.json +0 -65
- package/node_modules/split/readme.markdown +0 -72
- package/node_modules/split/test/options.asynct.js +0 -46
- package/node_modules/split/test/partitioned_unicode.js +0 -34
- package/node_modules/split/test/split.asynct.js +0 -137
- package/node_modules/split/test/try_catch.asynct.js +0 -51
- package/node_modules/stream-shift/.travis.yml +0 -6
- package/node_modules/stream-shift/LICENSE +0 -21
- package/node_modules/stream-shift/README.md +0 -25
- package/node_modules/stream-shift/index.js +0 -20
- package/node_modules/stream-shift/package.json +0 -56
- package/node_modules/stream-shift/test.js +0 -48
- package/node_modules/ultron/LICENSE +0 -22
- package/node_modules/ultron/README.md +0 -113
- package/node_modules/ultron/index.js +0 -136
- package/node_modules/ultron/package.json +0 -71
- package/node_modules/websocket-stream/LICENSE +0 -8
- package/node_modules/websocket-stream/collaborators.md +0 -11
- package/node_modules/websocket-stream/echo-server.js +0 -51
- package/node_modules/websocket-stream/index.d.ts +0 -27
- package/node_modules/websocket-stream/index.js +0 -6
- package/node_modules/websocket-stream/package.json +0 -82
- package/node_modules/websocket-stream/readme.md +0 -148
- package/node_modules/websocket-stream/server.js +0 -29
- package/node_modules/websocket-stream/stream.js +0 -189
- package/node_modules/websocket-stream/test-client.js +0 -74
- package/node_modules/websocket-stream/test-server.js +0 -56
- package/node_modules/websocket-stream/test.js +0 -338
- package/node_modules/websocket-stream/ts-tests.ts +0 -69
- package/node_modules/websocket-stream/ws-fallback.js +0 -12
- package/node_modules/ws/LICENSE +0 -21
- package/node_modules/ws/README.md +0 -341
- package/node_modules/ws/index.js +0 -15
- package/node_modules/ws/lib/.DS_Store +0 -0
- package/node_modules/ws/lib/BufferUtil.js +0 -71
- package/node_modules/ws/lib/Constants.js +0 -10
- package/node_modules/ws/lib/ErrorCodes.js +0 -28
- package/node_modules/ws/lib/EventTarget.js +0 -151
- package/node_modules/ws/lib/Extensions.js +0 -203
- package/node_modules/ws/lib/PerMessageDeflate.js +0 -507
- package/node_modules/ws/lib/Receiver.js +0 -553
- package/node_modules/ws/lib/Sender.js +0 -412
- package/node_modules/ws/lib/Validation.js +0 -17
- package/node_modules/ws/lib/WebSocket.js +0 -717
- package/node_modules/ws/lib/WebSocketServer.js +0 -326
- package/node_modules/ws/package.json +0 -83
- package/node_modules/xhr2/CONTRIBUTING.md +0 -33
- package/node_modules/xhr2/Cakefile +0 -131
- package/node_modules/xhr2/LICENSE.txt +0 -19
- package/node_modules/xhr2/README.md +0 -142
- package/node_modules/xhr2/lib/browser.js +0 -1
- package/node_modules/xhr2/lib/xhr2.js +0 -1244
- package/node_modules/xhr2/package.json +0 -103
- package/node_modules/xhr2/src/000-xml_http_request_event_target.coffee +0 -89
- package/node_modules/xhr2/src/001-xml_http_request.coffee +0 -781
- package/node_modules/xhr2/src/errors.coffee +0 -31
- package/node_modules/xhr2/src/progress_event.coffee +0 -39
- package/node_modules/xhr2/src/xml_http_request_upload.coffee +0 -95
- package/node_modules/xhr2/test/fixtures/hello.json +0 -1
- package/node_modules/xhr2/test/fixtures/hello.txt +0 -1
- package/node_modules/xhr2/test/fixtures/xhr2.png +0 -0
- package/node_modules/xhr2/test/html/browser_test.html +0 -30
- package/node_modules/xhr2/test/src/event_target_test.coffee +0 -85
- package/node_modules/xhr2/test/src/events_test.coffee +0 -204
- package/node_modules/xhr2/test/src/headers_test.coffee +0 -168
- package/node_modules/xhr2/test/src/helpers/browser_mocha_runner.coffee +0 -10
- package/node_modules/xhr2/test/src/helpers/browser_mocha_setup.coffee +0 -1
- package/node_modules/xhr2/test/src/helpers/setup.coffee +0 -38
- package/node_modules/xhr2/test/src/helpers/xhr_server.coffee +0 -156
- package/node_modules/xhr2/test/src/nodejs_set_test.coffee +0 -162
- package/node_modules/xhr2/test/src/redirect_test.coffee +0 -57
- package/node_modules/xhr2/test/src/response_type_test.coffee +0 -88
- package/node_modules/xhr2/test/src/responseurl_test.coffee +0 -18
- package/node_modules/xhr2/test/src/send_test.coffee +0 -89
- package/node_modules/xhr2/test/src/status_test.coffee +0 -47
- package/node_modules/xhr2/test/src/xhr_test.coffee +0 -102
- package/node_modules/xtend/.jshintrc +0 -30
- package/node_modules/xtend/LICENSE +0 -20
- package/node_modules/xtend/README.md +0 -32
- package/node_modules/xtend/immutable.js +0 -19
- package/node_modules/xtend/mutable.js +0 -17
- package/node_modules/xtend/package.json +0 -89
- package/node_modules/xtend/test.js +0 -103
- package/node_modules/yazl/LICENSE +0 -21
- package/node_modules/yazl/README.md +0 -389
- package/node_modules/yazl/index.js +0 -749
- package/node_modules/yazl/package.json +0 -69
- package/src/commands/CorelliumAPI.js +0 -76
- package/src/subscriberInvite.js +0 -140
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# This file defines the custom errors used in the XMLHttpRequest specification.
|
|
2
|
-
|
|
3
|
-
# Thrown if the XHR security policy is violated.
|
|
4
|
-
class SecurityError extends Error
|
|
5
|
-
# @private
|
|
6
|
-
constructor: -> super()
|
|
7
|
-
|
|
8
|
-
# Thrown if the XHR security policy is violated.
|
|
9
|
-
XMLHttpRequest.SecurityError = SecurityError
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
# Usually thrown if the XHR is in the wrong readyState for an operation.
|
|
13
|
-
class InvalidStateError extends Error
|
|
14
|
-
# @private
|
|
15
|
-
constructor: -> super()
|
|
16
|
-
|
|
17
|
-
# Usually thrown if the XHR is in the wrong readyState for an operation.
|
|
18
|
-
class InvalidStateError extends Error
|
|
19
|
-
XMLHttpRequest.InvalidStateError = InvalidStateError
|
|
20
|
-
|
|
21
|
-
# Thrown if there is a problem with the URL passed to the XHR.
|
|
22
|
-
class NetworkError extends Error
|
|
23
|
-
# @private
|
|
24
|
-
constructor: -> super()
|
|
25
|
-
|
|
26
|
-
# Thrown if parsing URLs errors out.
|
|
27
|
-
XMLHttpRequest.SyntaxError = SyntaxError
|
|
28
|
-
|
|
29
|
-
class SyntaxError extends Error
|
|
30
|
-
# @private:
|
|
31
|
-
constructor: -> super()
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# http://xhr.spec.whatwg.org/#interface-progressevent
|
|
2
|
-
class ProgressEvent
|
|
3
|
-
# Creates a new event.
|
|
4
|
-
#
|
|
5
|
-
# @param {String} type the event type, e.g. 'readystatechange'; must be
|
|
6
|
-
# lowercased
|
|
7
|
-
constructor: (@type) ->
|
|
8
|
-
@target = null
|
|
9
|
-
@currentTarget = null
|
|
10
|
-
@lengthComputable = false
|
|
11
|
-
@loaded = 0
|
|
12
|
-
@total = 0
|
|
13
|
-
# Getting the time from the OS is expensive, skip on that for now.
|
|
14
|
-
# @timeStamp = Date.now()
|
|
15
|
-
|
|
16
|
-
# @property {Boolean} for compatibility with DOM events
|
|
17
|
-
bubbles: false
|
|
18
|
-
|
|
19
|
-
# @property {Boolean} for fompatibility with DOM events
|
|
20
|
-
cancelable: false
|
|
21
|
-
|
|
22
|
-
# @property {XMLHttpRequest} the request that caused this event
|
|
23
|
-
target: null
|
|
24
|
-
|
|
25
|
-
# @property {Number} number of bytes that have already been downloaded or
|
|
26
|
-
# uploaded
|
|
27
|
-
loaded: null
|
|
28
|
-
|
|
29
|
-
# @property {Boolean} true if the Content-Length response header is available
|
|
30
|
-
# and the value of the event's total property is meaningful
|
|
31
|
-
lengthComputable: null
|
|
32
|
-
|
|
33
|
-
# @property {Number} number of bytes that will be downloaded or uploaded by
|
|
34
|
-
# the request that fired the event
|
|
35
|
-
total: null
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
# The XHR spec exports the ProgressEvent constructor.
|
|
39
|
-
XMLHttpRequest.ProgressEvent = ProgressEvent
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
# @see http://xhr.spec.whatwg.org/#interface-xmlhttprequest
|
|
2
|
-
class XMLHttpRequestUpload extends XMLHttpRequestEventTarget
|
|
3
|
-
# @private
|
|
4
|
-
# @param {XMLHttpRequest} the XMLHttpRequest that this upload object is
|
|
5
|
-
# associated with
|
|
6
|
-
constructor: (request) ->
|
|
7
|
-
super()
|
|
8
|
-
@_request = request
|
|
9
|
-
@_reset()
|
|
10
|
-
|
|
11
|
-
# Sets up this Upload to handle a new request.
|
|
12
|
-
#
|
|
13
|
-
# @private
|
|
14
|
-
# @return {undefined} undefined
|
|
15
|
-
_reset: ->
|
|
16
|
-
@_contentType = null
|
|
17
|
-
@_body = null
|
|
18
|
-
undefined
|
|
19
|
-
|
|
20
|
-
# Implements the upload-related part of the send() XHR specification.
|
|
21
|
-
#
|
|
22
|
-
# @private
|
|
23
|
-
# @param {?String, ?Buffer, ?ArrayBufferView} data the argument passed to
|
|
24
|
-
# XMLHttpRequest#send()
|
|
25
|
-
# @return {undefined} undefined
|
|
26
|
-
# @see step 4 of http://www.w3.org/TR/XMLHttpRequest/#the-send()-method
|
|
27
|
-
_setData: (data) ->
|
|
28
|
-
if typeof data is 'undefined' or data is null
|
|
29
|
-
return
|
|
30
|
-
|
|
31
|
-
if typeof data is 'string'
|
|
32
|
-
# DOMString
|
|
33
|
-
if data.length isnt 0
|
|
34
|
-
@_contentType = 'text/plain;charset=UTF-8'
|
|
35
|
-
@_body = Buffer.from data, 'utf8'
|
|
36
|
-
else if Buffer.isBuffer data
|
|
37
|
-
# node.js Buffer
|
|
38
|
-
@_body = data
|
|
39
|
-
else if data instanceof ArrayBuffer
|
|
40
|
-
# ArrayBuffer arguments were supported in an old revision of the spec.
|
|
41
|
-
body = Buffer.alloc data.byteLength
|
|
42
|
-
view = new Uint8Array data
|
|
43
|
-
body[i] = view[i] for i in [0...data.byteLength]
|
|
44
|
-
@_body = body
|
|
45
|
-
else if data.buffer and data.buffer instanceof ArrayBuffer
|
|
46
|
-
# ArrayBufferView
|
|
47
|
-
body = Buffer.alloc data.byteLength
|
|
48
|
-
offset = data.byteOffset
|
|
49
|
-
view = new Uint8Array data.buffer
|
|
50
|
-
body[i] = view[i + offset] for i in [0...data.byteLength]
|
|
51
|
-
@_body = body
|
|
52
|
-
else
|
|
53
|
-
# NOTE: diverging from the XHR specification of coercing everything else
|
|
54
|
-
# to Strings via toString() because that behavior masks bugs and is
|
|
55
|
-
# rarely useful
|
|
56
|
-
throw new Error "Unsupported send() data #{data}"
|
|
57
|
-
|
|
58
|
-
undefined
|
|
59
|
-
|
|
60
|
-
# Updates the HTTP headers right before the request is sent.
|
|
61
|
-
#
|
|
62
|
-
# This is used to set data-dependent headers such as Content-Length and
|
|
63
|
-
# Content-Type.
|
|
64
|
-
#
|
|
65
|
-
# @private
|
|
66
|
-
# @param {Object<String, String>} headers the HTTP headers to be sent
|
|
67
|
-
# @param {Object<String, String>} loweredHeaders maps lowercased HTTP header
|
|
68
|
-
# names (e.g., 'content-type') to the actual names used in the headers
|
|
69
|
-
# parameter (e.g., 'Content-Type')
|
|
70
|
-
# @return {undefined} undefined
|
|
71
|
-
_finalizeHeaders: (headers, loweredHeaders) ->
|
|
72
|
-
if @_contentType
|
|
73
|
-
unless 'content-type' of loweredHeaders
|
|
74
|
-
headers['Content-Type'] = @_contentType
|
|
75
|
-
|
|
76
|
-
if @_body
|
|
77
|
-
# Restricted headers can't be set by the user, no need to check
|
|
78
|
-
# loweredHeaders.
|
|
79
|
-
headers['Content-Length'] = @_body.length.toString()
|
|
80
|
-
|
|
81
|
-
undefined
|
|
82
|
-
|
|
83
|
-
# Starts sending the HTTP request data.
|
|
84
|
-
#
|
|
85
|
-
# @private
|
|
86
|
-
# @param {http.ClientRequest} request the HTTP request
|
|
87
|
-
# @return {undefined} undefined
|
|
88
|
-
_startUpload: (request) ->
|
|
89
|
-
request.write @_body if @_body
|
|
90
|
-
request.end()
|
|
91
|
-
|
|
92
|
-
undefined
|
|
93
|
-
|
|
94
|
-
# Export the XMLHttpRequestUpload constructor.
|
|
95
|
-
XMLHttpRequest.XMLHttpRequestUpload = XMLHttpRequestUpload
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hello": "world", "answer": 42}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Hello world!
|
|
Binary file
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
|
|
6
|
-
<title>node-xhr2 browser tests</title>
|
|
7
|
-
<link rel="stylesheet" href="/node_modules/mocha/mocha.css" />
|
|
8
|
-
<script src="/test/vendor/sinon.js"></script>
|
|
9
|
-
<script src="/test/vendor/chai.js"></script>
|
|
10
|
-
<script src="/node_modules/sinon-chai/lib/sinon-chai.js"></script>
|
|
11
|
-
<script src="/node_modules/mocha/mocha.js"></script>
|
|
12
|
-
<script src="/test/js/helpers/browser_mocha_setup.js"></script>
|
|
13
|
-
<script src="/test/js/helpers/xhr2.png.js"></script>
|
|
14
|
-
<script src="/test/js/helpers/setup.js"></script>
|
|
15
|
-
|
|
16
|
-
<script src="/test/js/event_target_test.js"></script>
|
|
17
|
-
<script src="/test/js/events_test.js"></script>
|
|
18
|
-
<script src="/test/js/headers_test.js"></script>
|
|
19
|
-
<script src="/test/js/redirect_test.js"></script>
|
|
20
|
-
<script src="/test/js/response_type_test.js"></script>
|
|
21
|
-
<script src="/test/js/send_test.js"></script>
|
|
22
|
-
<script src="/test/js/status_test.js"></script>
|
|
23
|
-
<script src="/test/js/xhr_test.js"></script>
|
|
24
|
-
|
|
25
|
-
<script src="/test/js/helpers/browser_mocha_runner.js"></script>
|
|
26
|
-
</head>
|
|
27
|
-
<body>
|
|
28
|
-
<div id="mocha"></div>
|
|
29
|
-
</body>
|
|
30
|
-
</html>
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
describe 'XMLHttpRequestEventTarget', ->
|
|
2
|
-
describe 'dispatchEvent', ->
|
|
3
|
-
beforeEach ->
|
|
4
|
-
@xhr = new XMLHttpRequest
|
|
5
|
-
@loadEvent = new ProgressEvent 'load'
|
|
6
|
-
|
|
7
|
-
it 'works with a DOM0 listener', ->
|
|
8
|
-
count = 0
|
|
9
|
-
@xhr.onload = (event) ->
|
|
10
|
-
count += 1
|
|
11
|
-
@xhr.dispatchEvent @loadEvent
|
|
12
|
-
expect(count).to.equal 1
|
|
13
|
-
|
|
14
|
-
it 'works with a DOM2 listener', ->
|
|
15
|
-
count = 0
|
|
16
|
-
@xhr.addEventListener 'load', (event) ->
|
|
17
|
-
count += 1
|
|
18
|
-
@xhr.dispatchEvent @loadEvent
|
|
19
|
-
expect(count).to.equal 1
|
|
20
|
-
|
|
21
|
-
it 'removes a DOM2 listener correctly', ->
|
|
22
|
-
count = 0
|
|
23
|
-
listener = (event) ->
|
|
24
|
-
count += 1
|
|
25
|
-
@xhr.addEventListener 'load', listener
|
|
26
|
-
@xhr.dispatchEvent @loadEvent
|
|
27
|
-
expect(count).to.equal 1
|
|
28
|
-
|
|
29
|
-
count = 0
|
|
30
|
-
@xhr.removeEventListener 'load', listener
|
|
31
|
-
@xhr.dispatchEvent @loadEvent
|
|
32
|
-
expect(count).to.equal 0
|
|
33
|
-
|
|
34
|
-
it 'binds this correctly in a DOM0 listener', ->
|
|
35
|
-
eventThis = null
|
|
36
|
-
@xhr.onload = (event) ->
|
|
37
|
-
eventThis = @
|
|
38
|
-
@xhr.dispatchEvent @loadEvent
|
|
39
|
-
expect(eventThis).to.equal @xhr
|
|
40
|
-
|
|
41
|
-
it 'binds this correctly in a DOM2 listener', ->
|
|
42
|
-
eventThis = null
|
|
43
|
-
@xhr.addEventListener 'load', (event) ->
|
|
44
|
-
eventThis = @
|
|
45
|
-
@xhr.dispatchEvent @loadEvent
|
|
46
|
-
expect(eventThis).to.equal @xhr
|
|
47
|
-
|
|
48
|
-
it 'sets target correctly in a DOM0 listener', ->
|
|
49
|
-
eventTarget = null
|
|
50
|
-
@xhr.onload = (event) ->
|
|
51
|
-
eventTarget = event.target
|
|
52
|
-
@xhr.dispatchEvent @loadEvent
|
|
53
|
-
expect(eventTarget).to.equal @xhr
|
|
54
|
-
|
|
55
|
-
it 'sets target correctly in a DOM2 listener', ->
|
|
56
|
-
eventTarget = null
|
|
57
|
-
@xhr.addEventListener 'load', (event) ->
|
|
58
|
-
eventTarget = event.target
|
|
59
|
-
@xhr.dispatchEvent @loadEvent
|
|
60
|
-
expect(eventTarget).to.equal @xhr
|
|
61
|
-
|
|
62
|
-
it 'works with a DOM0 and two DOM2 listeners', ->
|
|
63
|
-
count = [0, 0, 0]
|
|
64
|
-
@xhr.addEventListener 'load', (event) ->
|
|
65
|
-
count[1] += 1
|
|
66
|
-
@xhr.onload = (event) ->
|
|
67
|
-
count[0] += 1
|
|
68
|
-
@xhr.addEventListener 'load', (event) ->
|
|
69
|
-
count[2] += 1
|
|
70
|
-
@xhr.dispatchEvent @loadEvent
|
|
71
|
-
expect(count).to.deep.equal [1, 1, 1]
|
|
72
|
-
|
|
73
|
-
it 'does not invoke a DOM0 listener for a different event', ->
|
|
74
|
-
count = 0
|
|
75
|
-
@xhr.onerror = (event) ->
|
|
76
|
-
count += 1
|
|
77
|
-
@xhr.dispatchEvent @loadEvent
|
|
78
|
-
expect(count).to.equal 0
|
|
79
|
-
|
|
80
|
-
it 'does not invoke a DOM2 listener for a different event', ->
|
|
81
|
-
count = 0
|
|
82
|
-
@xhr.addEventListener 'error', (event) ->
|
|
83
|
-
count += 1
|
|
84
|
-
@xhr.dispatchEvent @loadEvent
|
|
85
|
-
expect(count).to.equal 0
|
|
@@ -1,204 +0,0 @@
|
|
|
1
|
-
describe 'XMLHttpRequest', ->
|
|
2
|
-
beforeEach ->
|
|
3
|
-
@xhr = new XMLHttpRequest
|
|
4
|
-
@dripUrl = 'http://localhost:8912/_/drip'
|
|
5
|
-
@dripJson = drips: 3, size: 1000, ms: 50, length: true
|
|
6
|
-
|
|
7
|
-
describe 'level 2 events', ->
|
|
8
|
-
beforeEach ->
|
|
9
|
-
@events = []
|
|
10
|
-
@endFired = false
|
|
11
|
-
@events.check = -> null # replaced by tests
|
|
12
|
-
@xhr.addEventListener 'loadstart', (event) =>
|
|
13
|
-
expect(event.type).to.equal 'loadstart'
|
|
14
|
-
expect(@endFired).to.equal false
|
|
15
|
-
@events.push event
|
|
16
|
-
@xhr.addEventListener 'progress', (event) =>
|
|
17
|
-
expect(event.type).to.equal 'progress'
|
|
18
|
-
expect(@endFired).to.equal false
|
|
19
|
-
@events.push event
|
|
20
|
-
@xhr.addEventListener 'load', (event) =>
|
|
21
|
-
expect(event.type).to.equal 'load'
|
|
22
|
-
expect(@endFired).to.equal false
|
|
23
|
-
@events.push event
|
|
24
|
-
@xhr.addEventListener 'loadend', (event) =>
|
|
25
|
-
expect(event.type).to.equal 'loadend'
|
|
26
|
-
expect(@endFired).to.equal false
|
|
27
|
-
@endFired = 'loadend already fired'
|
|
28
|
-
@events.push event
|
|
29
|
-
@events.check()
|
|
30
|
-
@xhr.addEventListener 'error', (event) =>
|
|
31
|
-
expect(event.type).to.equal 'error'
|
|
32
|
-
expect(@endFired).to.equal false
|
|
33
|
-
@events.push event
|
|
34
|
-
@xhr.addEventListener 'abort', (event) =>
|
|
35
|
-
expect(event.type).to.equal 'abort'
|
|
36
|
-
expect(@endFired).to.equal false
|
|
37
|
-
@events.push event
|
|
38
|
-
|
|
39
|
-
describe 'for a successful fetch with Content-Length set', ->
|
|
40
|
-
beforeEach ->
|
|
41
|
-
@xhr.open 'POST', @dripUrl
|
|
42
|
-
@xhr.send JSON.stringify(@dripJson)
|
|
43
|
-
|
|
44
|
-
it 'events have the correct target', (done) ->
|
|
45
|
-
@events.check = =>
|
|
46
|
-
for event in @events
|
|
47
|
-
expect(event.target).to.equal @xhr
|
|
48
|
-
done()
|
|
49
|
-
|
|
50
|
-
it 'events have the correct bubbling setup', (done) ->
|
|
51
|
-
@events.check = =>
|
|
52
|
-
for event in @events
|
|
53
|
-
expect(event.bubbles).to.equal false
|
|
54
|
-
expect(event.cancelable).to.equal false
|
|
55
|
-
done()
|
|
56
|
-
|
|
57
|
-
it 'events have the correct progress info', (done) ->
|
|
58
|
-
@events.check = =>
|
|
59
|
-
for event in @events
|
|
60
|
-
switch event.type
|
|
61
|
-
when 'loadstart'
|
|
62
|
-
expect(event.loaded).to.equal 0
|
|
63
|
-
expect(event.lengthComputable).to.equal false
|
|
64
|
-
expect(event.total).to.equal 0
|
|
65
|
-
when 'load', 'loadend'
|
|
66
|
-
expect(event.loaded).to.equal 3000
|
|
67
|
-
expect(event.lengthComputable).to.equal true
|
|
68
|
-
expect(event.total).to.equal 3000
|
|
69
|
-
when 'progress'
|
|
70
|
-
if event.lengthComputable
|
|
71
|
-
expect(event.loaded).to.be.gte 0
|
|
72
|
-
expect(event.loaded).to.be.lte 3000
|
|
73
|
-
expect(event.total).to.equal 3000
|
|
74
|
-
else
|
|
75
|
-
expect(event.loaded).to.be.gte 0
|
|
76
|
-
expect(event.total).to.equal 0
|
|
77
|
-
done()
|
|
78
|
-
|
|
79
|
-
it 'events include at least one intermediate progress event', (done) ->
|
|
80
|
-
@events.check = =>
|
|
81
|
-
found = 'no suitable progress event emitted'
|
|
82
|
-
for event in @events
|
|
83
|
-
continue unless event.type is 'progress'
|
|
84
|
-
continue unless event.loaded > 0
|
|
85
|
-
continue unless event.loaded < event.total
|
|
86
|
-
found = true
|
|
87
|
-
expect(found).to.equal true
|
|
88
|
-
done()
|
|
89
|
-
|
|
90
|
-
describe 'for a successful fetch without Content-Length set', ->
|
|
91
|
-
beforeEach ->
|
|
92
|
-
@xhr.open 'POST', @dripUrl
|
|
93
|
-
@dripJson.length = false
|
|
94
|
-
@xhr.send JSON.stringify(@dripJson)
|
|
95
|
-
|
|
96
|
-
it 'events have the correct progress info', (done) ->
|
|
97
|
-
@events.check = =>
|
|
98
|
-
for event in @events
|
|
99
|
-
expect(event.lengthComputable).to.equal false
|
|
100
|
-
expect(event.total).to.equal 0
|
|
101
|
-
switch event.type
|
|
102
|
-
when 'loadstart'
|
|
103
|
-
expect(event.loaded).to.equal 0
|
|
104
|
-
when 'load', 'loadend'
|
|
105
|
-
expect(event.loaded).to.equal 3000
|
|
106
|
-
when 'progress'
|
|
107
|
-
expect(event.loaded).to.be.gte 0
|
|
108
|
-
done()
|
|
109
|
-
|
|
110
|
-
it 'events include at least one intermediate progress event', (done) ->
|
|
111
|
-
@events.check = =>
|
|
112
|
-
found = 'no suitable progress event emitted'
|
|
113
|
-
for event in @events
|
|
114
|
-
continue unless event.type is 'progress'
|
|
115
|
-
continue if event.loaded is 0
|
|
116
|
-
continue if event.loaded is 3000
|
|
117
|
-
found = true
|
|
118
|
-
expect(found).to.equal true
|
|
119
|
-
done()
|
|
120
|
-
|
|
121
|
-
describe 'for a network error due to bad DNS', (done) ->
|
|
122
|
-
beforeEach ->
|
|
123
|
-
@xhr.open 'GET', 'https://broken.to.cause.an.xhrnetworkerror.com'
|
|
124
|
-
@xhr.send()
|
|
125
|
-
|
|
126
|
-
it 'no progress or load is emitted', (done) ->
|
|
127
|
-
@events.check = =>
|
|
128
|
-
for event in @events
|
|
129
|
-
expect(event.type).not.to.equal 'load'
|
|
130
|
-
expect(event.type).not.to.equal 'progress'
|
|
131
|
-
done()
|
|
132
|
-
|
|
133
|
-
it 'events include an error event', (done) ->
|
|
134
|
-
@events.check = =>
|
|
135
|
-
found = 'no suitable error emitted'
|
|
136
|
-
for event in @events
|
|
137
|
-
continue unless event.type is 'error'
|
|
138
|
-
found = true
|
|
139
|
-
expect(found).to.equal true
|
|
140
|
-
done()
|
|
141
|
-
|
|
142
|
-
describe 'readystatechange', ->
|
|
143
|
-
beforeEach ->
|
|
144
|
-
@events = []
|
|
145
|
-
@states = []
|
|
146
|
-
@doneFired = false
|
|
147
|
-
@events.check = -> null # replaced by tests
|
|
148
|
-
@xhr.addEventListener 'readystatechange', (event) =>
|
|
149
|
-
expect(event.type).to.equal 'readystatechange'
|
|
150
|
-
expect(@doneFired).to.equal false
|
|
151
|
-
@events.push event
|
|
152
|
-
@states.push event.target.readyState
|
|
153
|
-
if event.target.readyState is XMLHttpRequest.DONE
|
|
154
|
-
@doneFired = 'DONE already fired'
|
|
155
|
-
@events.check()
|
|
156
|
-
|
|
157
|
-
describe 'for a successful fetch with Content-Length set', ->
|
|
158
|
-
beforeEach ->
|
|
159
|
-
@xhr.open 'POST', @dripUrl
|
|
160
|
-
@xhr.send JSON.stringify(@dripJson)
|
|
161
|
-
|
|
162
|
-
it 'events have the correct target', (done) ->
|
|
163
|
-
@events.check = =>
|
|
164
|
-
for event in @events
|
|
165
|
-
expect(event.target).to.equal @xhr
|
|
166
|
-
done()
|
|
167
|
-
|
|
168
|
-
it 'events have the correct bubbling setup', (done) ->
|
|
169
|
-
@events.check = =>
|
|
170
|
-
for event in @events
|
|
171
|
-
expect(event.bubbles).to.equal false
|
|
172
|
-
expect(event.cancelable).to.equal false
|
|
173
|
-
done()
|
|
174
|
-
|
|
175
|
-
it 'events states are in the correct order', (done) ->
|
|
176
|
-
@events.check = =>
|
|
177
|
-
expect(@states).to.deep.equal [XMLHttpRequest.OPENED,
|
|
178
|
-
XMLHttpRequest.HEADERS_RECEIVED,
|
|
179
|
-
XMLHttpRequest.LOADING, XMLHttpRequest.DONE]
|
|
180
|
-
done()
|
|
181
|
-
|
|
182
|
-
describe 'for a successful fetch without Content-Length set', ->
|
|
183
|
-
beforeEach ->
|
|
184
|
-
@xhr.open 'POST', @dripUrl
|
|
185
|
-
@dripJson.length = false
|
|
186
|
-
@xhr.send JSON.stringify(@dripJson)
|
|
187
|
-
|
|
188
|
-
it 'events states are in the correct order', (done) ->
|
|
189
|
-
@events.check = =>
|
|
190
|
-
expect(@states).to.deep.equal [XMLHttpRequest.OPENED,
|
|
191
|
-
XMLHttpRequest.HEADERS_RECEIVED, XMLHttpRequest.LOADING,
|
|
192
|
-
XMLHttpRequest.DONE]
|
|
193
|
-
done()
|
|
194
|
-
|
|
195
|
-
describe 'for a network error due to bad DNS', (done) ->
|
|
196
|
-
beforeEach ->
|
|
197
|
-
@xhr.open 'GET', 'https://broken.to.cause.an.xhrnetworkerror.com'
|
|
198
|
-
@xhr.send()
|
|
199
|
-
|
|
200
|
-
it 'events states are in the correct order', (done) ->
|
|
201
|
-
@events.check = =>
|
|
202
|
-
expect(@states).to.deep.equal [XMLHttpRequest.OPENED,
|
|
203
|
-
XMLHttpRequest.DONE]
|
|
204
|
-
done()
|
|
@@ -1,168 +0,0 @@
|
|
|
1
|
-
describe 'XMLHttpRequest', ->
|
|
2
|
-
beforeEach ->
|
|
3
|
-
@xhr = new XMLHttpRequest
|
|
4
|
-
|
|
5
|
-
describe '#setRequestHeader', ->
|
|
6
|
-
beforeEach ->
|
|
7
|
-
@xhr.open 'POST', 'http://localhost:8912/_/headers'
|
|
8
|
-
@xhr.responseType = 'text'
|
|
9
|
-
|
|
10
|
-
describe 'with allowed headers', ->
|
|
11
|
-
beforeEach ->
|
|
12
|
-
@xhr.setRequestHeader 'Authorization', 'lol'
|
|
13
|
-
@xhr.setRequestHeader 'User-Agent', 'toaster'
|
|
14
|
-
@xhr.setRequestHeader 'X-Answer', '42'
|
|
15
|
-
@xhr.setRequestHeader 'X-Header-Name', 'value'
|
|
16
|
-
|
|
17
|
-
it 'should send the headers', (done) ->
|
|
18
|
-
@xhr.onload = =>
|
|
19
|
-
expect(@xhr.responseText).to.match(/^\{.*\}$/)
|
|
20
|
-
headers = JSON.parse @xhr.responseText
|
|
21
|
-
expect(headers).to.have.property 'authorization'
|
|
22
|
-
expect(headers['authorization']).to.equal 'lol'
|
|
23
|
-
expect(headers).to.have.property 'user-agent'
|
|
24
|
-
expect(headers['user-agent']).to.equal 'toaster'
|
|
25
|
-
expect(headers).to.have.property 'x-answer'
|
|
26
|
-
expect(headers['x-answer']).to.equal '42'
|
|
27
|
-
expect(headers).to.have.property 'x-header-name'
|
|
28
|
-
expect(headers['x-header-name']).to.equal 'value'
|
|
29
|
-
done()
|
|
30
|
-
@xhr.send ''
|
|
31
|
-
|
|
32
|
-
describe 'with a mix of allowed and forbidden headers', ->
|
|
33
|
-
beforeEach ->
|
|
34
|
-
@xhr.setRequestHeader 'Authorization', 'lol'
|
|
35
|
-
@xhr.setRequestHeader 'Proxy-Authorization', 'evil:kitten'
|
|
36
|
-
@xhr.setRequestHeader 'Sec-Breach', 'yes please'
|
|
37
|
-
@xhr.setRequestHeader 'Host', 'www.google.com'
|
|
38
|
-
@xhr.setRequestHeader 'Origin', 'https://www.google.com'
|
|
39
|
-
@xhr.setRequestHeader 'X-Answer', '42'
|
|
40
|
-
|
|
41
|
-
it 'should only send the allowed headers', (done) ->
|
|
42
|
-
@xhr.onloadend = =>
|
|
43
|
-
expect(@xhr.responseText).to.match(/^\{.*\}$/)
|
|
44
|
-
headers = JSON.parse @xhr.responseText
|
|
45
|
-
expect(headers).to.have.property 'authorization'
|
|
46
|
-
expect(headers['authorization']).to.equal 'lol'
|
|
47
|
-
expect(headers).not.to.have.property 'proxy-authorization'
|
|
48
|
-
expect(headers).not.to.have.property 'sec-breach'
|
|
49
|
-
expect(headers['origin']).not.to.match /www\.google\.com/
|
|
50
|
-
expect(headers['host']).not.to.match /www\.google\.com/
|
|
51
|
-
expect(headers).to.have.property 'x-answer'
|
|
52
|
-
expect(headers['x-answer']).to.equal '42'
|
|
53
|
-
done()
|
|
54
|
-
@xhr.send ''
|
|
55
|
-
|
|
56
|
-
describe 'with repeated headers', ->
|
|
57
|
-
beforeEach ->
|
|
58
|
-
@xhr.setRequestHeader 'Authorization', 'trol'
|
|
59
|
-
@xhr.setRequestHeader 'Authorization', 'lol'
|
|
60
|
-
@xhr.setRequestHeader 'Authorization', 'lol'
|
|
61
|
-
@xhr.setRequestHeader 'X-Answer', '42'
|
|
62
|
-
|
|
63
|
-
it 'should only send the allowed headers', (done) ->
|
|
64
|
-
_done = false
|
|
65
|
-
@xhr.onreadystatechange = =>
|
|
66
|
-
return if _done or @xhr.readyState isnt XMLHttpRequest.DONE
|
|
67
|
-
_done = true
|
|
68
|
-
expect(@xhr.responseText).to.match(/^\{.*\}$/)
|
|
69
|
-
headers = JSON.parse @xhr.responseText
|
|
70
|
-
expect(headers).to.have.property 'authorization'
|
|
71
|
-
expect(headers['authorization']).to.equal 'trol, lol, lol'
|
|
72
|
-
expect(headers).to.have.property 'x-answer'
|
|
73
|
-
expect(headers['x-answer']).to.equal '42'
|
|
74
|
-
done()
|
|
75
|
-
@xhr.send ''
|
|
76
|
-
|
|
77
|
-
describe 'with no headers', ->
|
|
78
|
-
beforeEach ->
|
|
79
|
-
@xhr.open 'POST', 'http://localhost:8912/_/headers'
|
|
80
|
-
@xhr.responseType = 'text'
|
|
81
|
-
|
|
82
|
-
it 'should set the protected headers correctly', (done) ->
|
|
83
|
-
@xhr.onload = =>
|
|
84
|
-
expect(@xhr.responseText).to.match(/^\{.*\}$/)
|
|
85
|
-
headers = JSON.parse @xhr.responseText
|
|
86
|
-
expect(headers).to.have.property 'connection'
|
|
87
|
-
expect(headers['connection']).to.equal 'keep-alive'
|
|
88
|
-
expect(headers).to.have.property 'host'
|
|
89
|
-
expect(headers['host']).to.equal 'localhost:8912'
|
|
90
|
-
expect(headers).to.have.property 'user-agent'
|
|
91
|
-
expect(headers['user-agent']).to.match(/^Mozilla\//)
|
|
92
|
-
done()
|
|
93
|
-
@xhr.send ''
|
|
94
|
-
|
|
95
|
-
describe '#getResponseHeader', ->
|
|
96
|
-
beforeEach ->
|
|
97
|
-
@xhr.open 'POST', 'http://localhost:8912/_/get_headers'
|
|
98
|
-
@headerJson =
|
|
99
|
-
'''
|
|
100
|
-
{"Accept-Ranges": "bytes",
|
|
101
|
-
"Content-Type": "application/xhr2; charset=utf-1337",
|
|
102
|
-
"Set-Cookie": "UserID=JohnDoe; Max-Age=3600; Version=1",
|
|
103
|
-
"X-Header": "one, more, value"}
|
|
104
|
-
'''
|
|
105
|
-
|
|
106
|
-
it 'returns accessible headers', (done) ->
|
|
107
|
-
@xhr.onloadend = =>
|
|
108
|
-
expect(@xhr.getResponseHeader('AccEPt-RANgeS')).to.equal 'bytes'
|
|
109
|
-
expect(@xhr.getResponseHeader('content-Type')).to.
|
|
110
|
-
equal 'application/xhr2; charset=utf-1337'
|
|
111
|
-
expect(@xhr.getResponseHeader('X-Header')).to.equal "one, more, value"
|
|
112
|
-
done()
|
|
113
|
-
@xhr.send @headerJson
|
|
114
|
-
|
|
115
|
-
it 'returns null for private headers', (done) ->
|
|
116
|
-
@xhr.onloadend = =>
|
|
117
|
-
expect(@xhr.getResponseHeader('set-cookie')).to.equal null
|
|
118
|
-
done()
|
|
119
|
-
@xhr.send @headerJson
|
|
120
|
-
|
|
121
|
-
it 'returns headers when the XHR enters HEADERS_RECEIVED', (done) ->
|
|
122
|
-
_done = false
|
|
123
|
-
@xhr.onreadystatechange = =>
|
|
124
|
-
return if _done or @xhr.readyState isnt XMLHttpRequest.HEADERS_RECEIVED
|
|
125
|
-
_done = true
|
|
126
|
-
expect(@xhr.getResponseHeader('AccEPt-RANgeS')).to.equal 'bytes'
|
|
127
|
-
done()
|
|
128
|
-
@xhr.send @headerJson
|
|
129
|
-
|
|
130
|
-
describe '#getAllResponseHeaders', ->
|
|
131
|
-
beforeEach ->
|
|
132
|
-
@xhr.open 'POST', 'http://localhost:8912/_/get_headers'
|
|
133
|
-
@headerJson =
|
|
134
|
-
'''
|
|
135
|
-
{"Accept-Ranges": "bytes",
|
|
136
|
-
"Content-Type": "application/xhr2; charset=utf-1337",
|
|
137
|
-
"Set-Cookie": "UserID=JohnDoe; Max-Age=3600; Version=1",
|
|
138
|
-
"X-Header": "one, more, value"}
|
|
139
|
-
'''
|
|
140
|
-
|
|
141
|
-
it 'contains accessible headers', (done) ->
|
|
142
|
-
@xhr.onloadend = =>
|
|
143
|
-
headers = @xhr.getAllResponseHeaders()
|
|
144
|
-
expect(headers).to.match(/(\A|\r\n)accept-ranges: bytes(\r\n|\Z)/mi)
|
|
145
|
-
expect(headers).to.match(
|
|
146
|
-
/(\A|\r\n)content-type: application\/xhr2; charset=utf-1337(\r\n|\Z)/mi)
|
|
147
|
-
expect(headers).to.match(/(\A|\r\n)X-Header: one, more, value(\r\n|\Z)/mi)
|
|
148
|
-
done()
|
|
149
|
-
@xhr.send @headerJson
|
|
150
|
-
|
|
151
|
-
it 'does not contain private headers', (done) ->
|
|
152
|
-
@xhr.onloadend = =>
|
|
153
|
-
headers = @xhr.getAllResponseHeaders()
|
|
154
|
-
expect(headers).not.to.match(/(\A|\r\n)set-cookie:/mi)
|
|
155
|
-
done()
|
|
156
|
-
@xhr.send @headerJson
|
|
157
|
-
|
|
158
|
-
it 'returns headers when the XHR enters HEADERS_RECEIVED', (done) ->
|
|
159
|
-
_done = false
|
|
160
|
-
@xhr.onreadystatechange = =>
|
|
161
|
-
return if _done or @xhr.readyState isnt XMLHttpRequest.HEADERS_RECEIVED
|
|
162
|
-
_done = true
|
|
163
|
-
headers = @xhr.getAllResponseHeaders()
|
|
164
|
-
expect(headers).to.match(/(\A|\r\n)accept-ranges: bytes(\r\n|\Z)/mi)
|
|
165
|
-
done()
|
|
166
|
-
@xhr.send @headerJson
|
|
167
|
-
|
|
168
|
-
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
window.addEventListener 'load', ->
|
|
2
|
-
runner = null
|
|
3
|
-
runner = mocha.run ->
|
|
4
|
-
return if runner is null # Synchronous tests may call this spuriously.
|
|
5
|
-
failures = runner.failures || 0
|
|
6
|
-
total = runner.total || 0
|
|
7
|
-
image = new Image()
|
|
8
|
-
image.src = "/diediedie?failed=#{failures}&total=#{total}";
|
|
9
|
-
image.onload = ->
|
|
10
|
-
null
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
mocha.setup ui: 'bdd', slow: 150, timeout: 1000, bail: false
|