summaryrefslogtreecommitdiff
path: root/test/built-ins/AsyncGeneratorPrototype/next/this-val-not-object.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/AsyncGeneratorPrototype/next/this-val-not-object.js')
-rw-r--r--test/built-ins/AsyncGeneratorPrototype/next/this-val-not-object.js98
1 files changed, 98 insertions, 0 deletions
diff --git a/test/built-ins/AsyncGeneratorPrototype/next/this-val-not-object.js b/test/built-ins/AsyncGeneratorPrototype/next/this-val-not-object.js
new file mode 100644
index 000000000..7fd254f2d
--- /dev/null
+++ b/test/built-ins/AsyncGeneratorPrototype/next/this-val-not-object.js
@@ -0,0 +1,98 @@
+// Copyright 2018 Valerie Young. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-asyncgenerator-prototype-next
+description: next rejects promise when `this` value not an object
+info: |
+ AsyncGenerator.prototype.next ( value )
+ 1. Let generator be the this value.
+ 2. Let completion be NormalCompletion(value).
+ 3. Return ! AsyncGeneratorEnqueue(generator, completion).
+
+ AsyncGeneratorEnqueue ( generator, completion )
+ ...
+ 3. If Type(generator) is not Object, or if generator does not have an
+ [[AsyncGeneratorState]] internal slot, then
+ a. Let badGeneratorError be a newly created TypeError object.
+ b. Perform ! Call(promiseCapability.[[Reject]], undefined, « badGeneratorError »).
+ c. Return promiseCapability.[[Promise]].
+
+flags: [async]
+features: [async-iteration]
+---*/
+
+async function* g() {}
+var AsyncGeneratorPrototype = Object.getPrototypeOf(g).prototype;
+
+var symbol = Symbol();
+
+var testPromises = [
+ AsyncGeneratorPrototype.next.call(undefined).then(
+ function () {
+ throw new Test262Error("AsyncGeneratorPrototype.next should reject promise" +
+ " when `this` value `undefined`");
+ },
+ function (e) {
+ if (!(e instanceof TypeError)) {
+ throw new Test262Error("(undefined) expected TypeError but got " + e);
+ }
+ }
+ ),
+ AsyncGeneratorPrototype.next.call(1).then(
+ function () {
+ throw new Test262Error("AsyncGeneratorPrototype.next should reject promise" +
+ " when `this` value is a Number");
+ },
+ function (e) {
+ if (!(e instanceof TypeError)) {
+ throw new Test262Error("(Number) expected TypeError but got " + e);
+ }
+ }
+ ),
+ AsyncGeneratorPrototype.next.call("string").then(
+ function () {
+ throw new Test262Error("AsyncGeneratorPrototype.next should reject promise" +
+ " when `this` value is a String");
+ },
+ function (e) {
+ if (!(e instanceof TypeError)) {
+ throw new Test262Error("(String) expected TypeError but got " + e);
+ }
+ }
+ ),
+ AsyncGeneratorPrototype.next.call(null).then(
+ function () {
+ throw new Test262Error("AsyncGeneratorPrototype.next should reject promise" +
+ " when `this` value `null`");
+ },
+ function (e) {
+ if (!(e instanceof TypeError)) {
+ throw new Test262Error("(null) expected TypeError but got " + e);
+ }
+ }
+ ),
+ AsyncGeneratorPrototype.next.call(true).then(
+ function () {
+ throw new Test262Error("AsyncGeneratorPrototype.next should reject promise" +
+ " when `this` value is a Boolean");
+ },
+ function (e) {
+ if (!(e instanceof TypeError)) {
+ throw new Test262Error("(Boolean) expected TypeError but got " + e);
+ }
+ }
+ ),
+ AsyncGeneratorPrototype.next.call(symbol).then(
+ function () {
+ throw new Test262Error("AsyncGeneratorPrototype.next should reject promise" +
+ " when `this` value is a Symbol");
+ },
+ function (e) {
+ if (!(e instanceof TypeError)) {
+ throw new Test262Error("(Symbol) expected TypeError but got " + e);
+ }
+ }
+ )
+]
+
+Promise.all(testPromises).then(() => {}).then($DONE, $DONE)