2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: If string.charAt(k) in [0xDC00 - 0xDFFF], throw URIError
|
2017-06-29 19:45:45 +02:00
|
|
|
esid: sec-encodeuricomponent-uricomponent
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Complex tests
|
2017-04-18 22:31:31 +02:00
|
|
|
includes: [decimalToHexString.js]
|
2014-07-22 01:09:02 +02:00
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
2015-04-29 17:44:25 +02:00
|
|
|
var errorCount = 0;
|
|
|
|
var count = 0;
|
2011-09-07 08:35:18 +02:00
|
|
|
var indexP;
|
|
|
|
var indexO = 0;
|
|
|
|
|
2015-04-29 17:44:25 +02:00
|
|
|
for (var index = 0xDC00; index <= 0xDFFF; index++) {
|
2017-06-29 19:45:58 +02:00
|
|
|
count++;
|
2011-09-07 08:35:18 +02:00
|
|
|
try {
|
|
|
|
encodeURIComponent(String.fromCharCode(index));
|
2017-06-29 19:45:58 +02:00
|
|
|
} catch (e) {
|
|
|
|
if ((e instanceof URIError) === true) continue;
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
2017-06-29 19:45:58 +02:00
|
|
|
if (indexO === 0) {
|
2011-09-07 08:35:18 +02:00
|
|
|
indexO = index;
|
|
|
|
} else {
|
2017-06-29 19:45:58 +02:00
|
|
|
if ((index - indexP) !== 1) {
|
2011-09-07 08:35:18 +02:00
|
|
|
if ((indexP - indexO) !== 0) {
|
|
|
|
var hexP = decimalToHexString(indexP);
|
|
|
|
var hexO = decimalToHexString(indexO);
|
2021-07-21 21:37:52 +02:00
|
|
|
throw new Test262Error('#' + hexO + '-' + hexP + ' ');
|
2017-06-29 19:45:58 +02:00
|
|
|
}
|
2011-09-07 08:35:18 +02:00
|
|
|
else {
|
|
|
|
var hexP = decimalToHexString(indexP);
|
2021-07-21 21:37:52 +02:00
|
|
|
throw new Test262Error('#' + hexP + ' ');
|
2017-06-29 19:45:58 +02:00
|
|
|
}
|
2011-09-07 08:35:18 +02:00
|
|
|
indexO = index;
|
2017-06-29 19:45:58 +02:00
|
|
|
}
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
indexP = index;
|
2017-06-29 19:45:58 +02:00
|
|
|
errorCount++;
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (errorCount > 0) {
|
|
|
|
if ((indexP - indexO) !== 0) {
|
|
|
|
var hexP = decimalToHexString(indexP);
|
|
|
|
var hexO = decimalToHexString(indexO);
|
2021-07-21 21:37:52 +02:00
|
|
|
throw new Test262Error('#' + hexO + '-' + hexP + ' ');
|
2011-09-07 08:35:18 +02:00
|
|
|
} else {
|
|
|
|
var hexP = decimalToHexString(indexP);
|
2021-07-21 21:37:52 +02:00
|
|
|
throw new Test262Error('#' + hexP + ' ');
|
2017-06-29 19:45:58 +02:00
|
|
|
}
|
2021-07-21 21:37:52 +02:00
|
|
|
throw new Test262Error('Total error: ' + errorCount + ' bad Unicode character in ' + count + ' ');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|