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: URI tests
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.1.3.3_A4_T4
|
2017-06-29 20:03:03 +02:00
|
|
|
es6id: 18.2.6.4
|
|
|
|
esid: sec-encodeuri-uri
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Test some url
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//CHECK#1
|
|
|
|
if (encodeURI("") !== "") {
|
|
|
|
$ERROR('#1: ""');
|
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#2
|
|
|
|
if (encodeURI("http://unipro.ru") !== "http://unipro.ru") {
|
|
|
|
$ERROR('#2: http://unipro.ru');
|
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#3
|
|
|
|
if (encodeURI("http://www.google.ru/support/jobs/bin/static.py?page=why-ru.html&sid=liveandwork") !== "http://www.google.ru/support/jobs/bin/static.py?page=why-ru.html&sid=liveandwork") {
|
|
|
|
$ERROR('#3: http://www.google.ru/support/jobs/bin/static.py?page=why-ru.html&sid=liveandwork"');
|
2017-06-29 20:03:20 +02:00
|
|
|
}
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//CHECK#4
|
|
|
|
if (encodeURI("http://en.wikipedia.org/wiki/UTF-8#Description") !== "http://en.wikipedia.org/wiki/UTF-8#Description") {
|
|
|
|
$ERROR('#4: http://en.wikipedia.org/wiki/UTF-8#Description');
|
|
|
|
}
|