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 B = 110xxxxx (n = 2) and (k + 2) + 3 >= length, throw URIError
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.1.3.1_A1.4_T1
|
2017-06-29 21:49:38 +02:00
|
|
|
es6id: 18.2.6.2
|
|
|
|
esid: sec-decodeuri-encodeduri
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Complex tests. B = [0xC0 - 0xDF]
|
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
|
|
|
|
|
|
|
var errorCount = 0;
|
|
|
|
var count = 0;
|
|
|
|
var indexP;
|
|
|
|
var indexO = 0;
|
|
|
|
|
|
|
|
for (var index = 0xC0; index <= 0xDF; index++) {
|
2017-06-29 21:49:49 +02:00
|
|
|
count++;
|
2011-09-07 08:35:18 +02:00
|
|
|
var str = "";
|
|
|
|
var result = true;
|
|
|
|
for (var len = 0; len < 3; len++) {
|
2017-04-18 22:31:31 +02:00
|
|
|
var hex = decimalToPercentHexString(index);
|
2011-09-07 08:35:18 +02:00
|
|
|
try {
|
2017-04-18 22:31:31 +02:00
|
|
|
decodeURI(hex + str);
|
2017-06-29 21:49:49 +02:00
|
|
|
} catch (e) {
|
|
|
|
if ((e instanceof URIError) === true) continue;
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
result = false;
|
|
|
|
str = str + "1";
|
|
|
|
}
|
|
|
|
if (result !== true) {
|
2017-06-29 21:49:49 +02:00
|
|
|
if (indexO === 0) {
|
2011-09-07 08:35:18 +02:00
|
|
|
indexO = index;
|
|
|
|
} else {
|
2017-06-29 21:49:49 +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);
|
|
|
|
$ERROR('#' + hexO + '-' + hexP + ' ');
|
2017-06-29 21:49:49 +02:00
|
|
|
}
|
2011-09-07 08:35:18 +02:00
|
|
|
else {
|
|
|
|
var hexP = decimalToHexString(indexP);
|
|
|
|
$ERROR('#' + hexP + ' ');
|
2017-06-29 21:49:49 +02:00
|
|
|
}
|
2011-09-07 08:35:18 +02:00
|
|
|
indexO = index;
|
2017-06-29 21:49:49 +02:00
|
|
|
}
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
indexP = index;
|
2017-06-29 21:49:49 +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);
|
|
|
|
$ERROR('#' + hexO + '-' + hexP + ' ');
|
|
|
|
} else {
|
|
|
|
var hexP = decimalToHexString(indexP);
|
|
|
|
$ERROR('#' + hexP + ' ');
|
2017-06-29 21:49:49 +02:00
|
|
|
}
|
2011-09-07 08:35:18 +02:00
|
|
|
$ERROR('Total error: ' + errorCount + ' bad Unicode character in ' + count + ' ');
|
|
|
|
}
|