gecko/testing/mochitest
2013-05-13 12:55:17 +01:00
..
chrome Bug 855465 - Add emacs python mode comments to moz.build files; r=gps 2013-04-01 11:36:59 -07:00
dynamic Bug 855465 - Add emacs python mode comments to moz.build files; r=gps 2013-04-01 11:36:59 -07:00
MochiKit Bug 855465 - Add emacs python mode comments to moz.build files; r=gps 2013-04-01 11:36:59 -07:00
pywebsocket
roboextender Bug 855465 - Add emacs python mode comments to moz.build files; r=gps 2013-04-01 11:36:59 -07:00
ssltunnel Backed out changeset 496846474ed3 (bug 864774) 2013-05-13 10:05:49 +01:00
static Bug 855465 - Add emacs python mode comments to moz.build files; r=gps 2013-04-01 11:36:59 -07:00
tests Bug 868329 - Switch legacy cases of test disabling on Android/B2G using makefile ifdefs over to android.json & b2g.json. r=edmorley 2013-05-07 12:46:45 -04:00
android.json Disable probably-broken test to reopen a CLOSED TREE. No bug, except the one filed to reenable, which is not the bug this changeset is fixing, so there. 2013-05-10 17:22:51 -04:00
b2g.json Bug 861903 - Enable test. 2013-05-12 21:10:58 -07:00
browser-harness.xul
browser-test-overlay.xul
browser-test.js Bug 863447 - Give mochitest-browser some time to complete off main thread work when nsGlobalWindows appear leaked 2013-04-24 20:05:17 +02:00
cc-analyzer.js
chrome-harness.js
gen_template.pl
harness-overlay.xul
harness.xul
install.rdf
intermediate-ev-tester.crl Bug 864633 - broken site identity info bar part2 (tests from 813418). r=bsmith 2013-04-25 13:40:26 -07:00
jar.mn
mach_commands.py Bug 856392 - Categorize mach commands; r=jhammel 2013-05-08 17:56:30 -07:00
Makefile.in Bug 865944 - Add droid.py to list of files used by remote reftests and mochitests; r=jmaher 2013-05-03 11:37:51 -06:00
manifest.webapp
moz.build Bug 855465 - Add emacs python mode comments to moz.build files; r=gps 2013-04-01 11:36:59 -07:00
plain-loop.html
pywebsocket_wrapper.py
README.txt
redirect.html
root-ev-tester.crl Bug 864633 - broken site identity info bar part2 (tests from 813418). r=bsmith 2013-04-25 13:40:26 -07:00
runtests.py Bug 830430 - automation.py should read profile data from a file, r=jhammel 2013-05-07 11:19:46 -04:00
runtestsb2g.py Bug 861689 - Fix focus issues in various B2G mochitests. r=jmaher 2013-05-03 18:29:55 +02:00
runtestsremote.py Backed out changeset 611c81436abe (bug 863445) 2013-05-13 12:31:13 +01: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>