blob: d8981705ae4fc26a9e2917160d5385323672f715 [file] [log] [blame]
<html>
<head>
<meta charset='utf-8'>
<style>
.pass {
font-weight: bold;
color: green;
}
.fail {
font-weight: bold;
color: red;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function SputnikError(message)
{
this.message = message;
}
SputnikError.prototype.toString = function ()
{
return 'SputnikError: ' + this.message;
};
var sputnikException;
function testPrint(msg)
{
var span = document.createElement("span");
document.getElementById("console").appendChild(span); // insert it first so XHTML knows the namespace
span.innerHTML = msg + '<br />';
}
function escapeHTML(text)
{
return text.toString().replace(/&/g, "&amp;").replace(/</g, "&lt;");
}
function printTestPassed(msg)
{
testPrint('<span><span class="pass">PASS</span> ' + escapeHTML(msg) + '</span>');
}
function printTestFailed(msg)
{
testPrint('<span><span class="fail">FAIL</span> ' + escapeHTML(msg) + '</span>');
}
function testFailed(msg)
{
throw new SputnikError(msg);
}
var successfullyParsed = false;
</script>
</head>
<body>
<p>S12.11_A1_T3</p>
<div id='console'></div>
<script>
try {
/**
* @name: S12.11_A1_T3;
* @section: 12.11;
* @assertion: If Result.type is break and Result.target is in the current
* label set, return (normal, Result.value, empty);
* @description: Using case with null, NaN, Infinity;
*/
function SwitchTest(value){
var result = 0;
switch(value) {
case 0:
result += 2;
case 1:
result += 4;
break;
case 2:
result += 8;
case 3:
result += 16;
default:
result += 32;
break;
case null:
result += 64;
case NaN:
result += 128;
break;
case Infinity:
result += 256;
case 2+3:
result += 512;
break;
case undefined:
result += 1024;
}
return result;
}
if(!(SwitchTest(0) === 6)){
testFailed("#1: SwitchTest(0) === 6. Actual: SwitchTest(0) ==="+ SwitchTest(0) );
}
if(!(SwitchTest(1) === 4)){
testFailed("#2: SwitchTest(1) === 4. Actual: SwitchTest(1) ==="+ SwitchTest(1) );
}
if(!(SwitchTest(2) === 56)){
testFailed("#3: SwitchTest(2) === 56. Actual: SwitchTest(2) ==="+ SwitchTest(2) );
}
if(!(SwitchTest(3) === 48)){
testFailed("#4: SwitchTest(3) === 48. Actual: SwitchTest(3) ==="+ SwitchTest(3) );
}
if(!(SwitchTest(4) === 32)){
testFailed("#5: SwitchTest(4) === 32. Actual: SwitchTest(4) ==="+ SwitchTest(4) );
}
if(!(SwitchTest(5) === 512)){
testFailed("#5: SwitchTest(5) === 512. Actual: SwitchTest(5) ==="+ SwitchTest(5) );
}
if(!(SwitchTest(true) === 32)){
testFailed("#6: SwitchTest(true) === 32. Actual: SwitchTest(true) ==="+ SwitchTest(true) );
}
if(!(SwitchTest(false) === 32)){
testFailed("#7: SwitchTest(false) === 32. Actual: SwitchTest(false) ==="+ SwitchTest(false) );
}
if(!(SwitchTest(null) === 192)){
testFailed("#8: SwitchTest(null) === 192. Actual: SwitchTest(null) ==="+ SwitchTest(null) );
}
if(!(SwitchTest(void 0) === 1024)){
testFailed("#9: SwitchTest(void 0) === 1024. Actual: SwitchTest(void 0) ==="+ SwitchTest(void 0) );
}
if(!(SwitchTest(NaN) === 32)){
testFailed("#10: SwitchTest(NaN) === 32. Actual: SwitchTest(NaN) ==="+ SwitchTest(NaN) );
}
if(!(SwitchTest(Infinity) === 768)){
testFailed("#10: SwitchTest(NaN) === 768. Actual: SwitchTest(NaN) ==="+ SwitchTest(NaN) );
}
} catch (ex) {
sputnikException = ex;
}
var successfullyParsed = true;
</script>
<script>
if (!successfullyParsed)
printTestFailed('successfullyParsed is not set');
else if (sputnikException)
printTestFailed(sputnikException);
else
printTestPassed("");
testPrint('<br /><span class="pass">TEST COMPLETE</span>');
</script>
</body>
</html>