harness test: detachArrayBuffer.js

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
This commit is contained in:
Rick Waldron 2017-06-23 11:08:50 -04:00
parent 8e360021b8
commit 759ad854e9
2 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,42 @@
// Copyright (C) 2017 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Including detachArrayBuffer.js will expose a function:
$DETACHBUFFER
$DETACHBUFFER relies on the presence of a definition for $262.detachArrayBuffer
includes: [detachArrayBuffer.js,sta.js]
---*/
var $262 = {
detachArrayBuffer() {
throw new Test262Error('$262.detachArrayBuffer called.');
}
};
var ab = new ArrayBuffer(1);
var threw = false;
try {
$DETACHBUFFER(ab);
} catch(err) {
threw = true;
if (err.constructor !== Test262Error) {
$ERROR(
'Expected a Test262Error, but a "' + err.constructor.name +
'" was thrown.'
);
}
if (err.message !== '$262.detachArrayBuffer called.') {
$ERROR(`Expected error message: ${err.message}`);
}
}
if (threw === false) {
$ERROR('Expected a Test262Error, but no error was thrown.');
}

View File

@ -0,0 +1,34 @@
// Copyright (C) 2017 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Including detachArrayBuffer.js will expose a function:
$DETACHBUFFER
$DETACHBUFFER relies on the presence of a definition for $262.detachArrayBuffer.
Without a definition, calling $DETACHBUFFER will result in a ReferenceError
includes: [detachArrayBuffer.js,sta.js]
---*/
var ab = new ArrayBuffer(1);
var threw = false;
try {
$DETACHBUFFER(ab);
} catch(err) {
threw = true;
if (err.constructor !== ReferenceError) {
$ERROR(
'Expected a ReferenceError, but a "' + err.constructor.name +
'" was thrown.'
);
}
}
if (threw === false) {
$ERROR('Expected a ReferenceError, but no error was thrown.');
}