gecko/testing/mochitest
2013-03-18 11:02:08 -07:00
..
chrome Bug 784841 - Part 18η: Convert /testing; r=ted 2013-02-25 13:05:39 -08:00
dynamic Bug 784841 - Part 18η: Convert /testing; r=ted 2013-02-25 13:05:39 -08:00
MochiKit Bug 784841 - Part 18η: Convert /testing; r=ted 2013-02-25 13:05:39 -08:00
pywebsocket
roboextender Bug 784841 - Part 18η: Convert /testing; r=ted 2013-02-25 13:05:39 -08:00
ssltunnel Bug 784841 - Part 18η: Convert /testing; r=ted 2013-02-25 13:05:39 -08:00
static Bug 784841 - Part 18η: Convert /testing; r=ted 2013-02-25 13:05:39 -08:00
tests Bug 844635 - Part 3: Remove empty Makefile.in files; r=glandium 2013-03-17 18:01:25 -07:00
android.json Bug 782211 - Part 5: Implement Notification API. r=smaug 2013-03-18 06:24:54 -07:00
b2g.json Bug 845785 - re-exclude test_Range-mutations.html for frequent crashes, a=test-only 2013-03-18 11:02:08 -07:00
browser-harness.xul Bug 771271 - Get mochitest-metro-chrome tests running in immersive mode. r=jmaher 2013-02-12 14:51:24 -06:00
browser-test-overlay.xul
browser-test.js Bug 850559: Make mochitests check that the test didn't leave the refresh driver under test control. r=ted 2013-03-15 14:40:37 -07:00
cc-analyzer.js
chrome-harness.js
gen_template.pl Bug 809097 - Add a testharness.js case to gen_template.pl; r=jhammel 2012-12-02 09:59:36 +01:00
harness-overlay.xul
harness.xul
install.rdf
jar.mn Bug 404077: Add mochitest support (currently semi-disabled) for making tests fail when an unexpected number of assertions fire. r=ted 2013-02-24 23:42:38 -08:00
mach_commands.py Bug 840690 - Improve handling of relative paths when running mach in subdirectories [r=gps] 2013-03-14 11:09:00 -07:00
Makefile.in Bug 846273 - robocop_autophone.ini is not included in the test package, r=ted. 2013-03-01 00:32:03 -08:00
manifest.webapp Bug 839519 - Add systemXHR permission. r=dclarke 2013-03-09 21:00:14 -05:00
moz.build Bug 784841 - Part 18η: Convert /testing; r=ted 2013-02-25 13:05:39 -08:00
plain-loop.html
pywebsocket_wrapper.py
README.txt
redirect.html
runtests.py Bug 832491 - enable --timeout support in browser-chrome mochitests; r=jmaher 2013-02-19 13:27:28 -05:00
runtestsb2g.py Bug 842668 - Should always use dd instead of cp in b2g reftest/mochitest;r=ahal 2013-02-21 15:44:24 -05:00
runtestsremote.py Bug 846772 - Disable dynamic toolbar on robocop tests. r=kats,jmaher 2013-03-12 18:32:26 +00:00
runtestsvmware.py
server.js

 ----------------
 mochitest README
 ----------------

Steps to get started:

 1.) Run the runtests.pl script to start the server.
 
     Currently, the test script automatically determines the location
     of *Firefox*.

 2.) gen_template.pl will generate test templates for HTML, XUL, and XHTML.
     Read the comment at the top of the file for usage instructions.

 3.) Write a test.


Example test:

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=345656
-->
<head>
  <title>Test for Bug 345656</title>
  <script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>        
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 345656 **/
//
//add information to show on the test page
//
$("display").innerHTML = "doing stuff...";

//
// The '$' is function is shorthand for getElementById. This is the same thing:
//
document.getElementById("display").innerHTML = "doing stuff...";

//
// you can add content that you don't want to clutter 
// the display to the content div.
//
// You can write directly, or you can use MochiKit functions
// to do it in JS like this:
//
appendChildNodes($("content"),
                 DIV({class: "qux"},
                     SPAN({id: "span42"}, "content"))
                 );

//
// the ok() function is like assert
//
ok(true, "checking to see if true is true);

//
// this will fail
//
ok(1==2, "1 equals 2?");


//
// this will be marked as a todo.
// When we fix 1 so it equals 2, we'll need to change this 
// function to ok() or is().
//
todo(1==2, "1 equals 2?");

//
// is() takes two args
//
myVar = "foo";
is(myVar, "foo", "checking to see if myVar is 'foo'");

//
// Tests can run in event handlers.
// Call this to tell SimpleTest to wait for SimpleTest.finish() 
//
SimpleTest.waitForExplicitFinish();

//
// event handler:
//
function event_fired(ev) {
  is(ev.newValue, "width: auto;", "DOMAttrModified event reports correct newValue");
  SimpleTest.finish(); // trigger the end of our test sequence
}

//
// Hook up the event. Mochikit.Signal has many conveniences for this, if you want.
//
$("content").addEventListener("DOMAttrModified", event_fired, false);

//
// Fire the event.
//
$("content").style.width = "auto";

</script>
</pre>
</body>
</html>