Andrew Halberstadt
ca934641fa
Bug 985403 - Refactor MarionetteBaseRunner.start_marionette and pass in symbols_path by default, r=mdas
2014-03-20 11:41:11 -04:00
Dave Hunt
bfb6cdcfe0
Bug 979512 - Add a command line option to split the tests and run a specified chunk. r=jgriffin
2014-03-20 09:27:29 -04:00
Vicamo Yang
9a1921f04d
Bug 985537: add runEmulatorShell to Marionette. r=mdas
2014-03-20 13:01:25 +08:00
Andreas Tolfsen
acb5b5b233
Bug 979299 - Reduce fragility in real time test. r=dburns
...
Sometimes the clock.sleep(0.1) may take shorter than 0.1 seconds. This
isn't a test about precision in Python, but rather that the SystemClock
wrapper works as intended and returns a somewhat expected value.
2014-03-17 17:40:16 -04:00
William Lachance
40b7f3a0f3
Bug 978333 - Try to use localhost for marionette webserver if possible. r=jgriffin
2014-03-17 15:28:23 -04:00
Vikas Mishra
7b95cc5017
Bug 959517 - Clarify connection error message, r=mdas
2014-03-17 22:19:35 +05:30
Vikas Mishra
46cd4c8a90
Bug 974891 - Move TestCapabilities to test_capabilities.py file. r=ato
2014-03-14 23:57:03 +05:30
Jonathan Griffin
58a8088aa9
Bug 982361 - Bump marionette_client to 0.7.6, r=AutomatedTester
2014-03-11 18:16:54 -07:00
David Burns
81c06fffa8
Bug 981568: Handle if we get IOError if B2G crashes during a test run; r=jgriffin
2014-03-11 17:10:16 +00:00
James Graham
23649d548d
Bug 979338 - Document delete_session method in the python client API, r=mdas
2014-03-04 17:42:11 +00:00
Dave Hunt
ed64d41323
Bug 979577 - Test durations are always zero in the HTML report. r=jgriffin
2014-03-06 14:49:50 +00:00
Vicamo Yang
447b2c7196
Bug 975359: add test cases for B2G orientation sensor. r=jgriffin, f=slee
2014-03-05 10:37:50 +08:00
Eddy Bruel
15989ab51b
Bug 859372 - Refactor DevToolsUtils.js;r=past
2014-03-04 15:38:05 +01:00
Andreas Tolfsen
b72fe61222
Bug 970680 - Limit number of decimals used in TimeoutException. r=dburns
2014-02-28 16:41:03 -05:00
Andrew Halberstadt
225ecc8505
Bug 976120 - shell.js should respect crash reporting environment, r=fabrice
2014-02-27 16:36:00 -05:00
David Burns
3485871e32
Bug 976831: Remove unused getStatus method from Marionette; r=mdas
2014-02-26 17:06:24 +00:00
Malini Das
fa4d3d1072
Bug 975169 - Marionette test runner should not override textrunnerclass, version bump, r=jgriffiin,dburns
2014-02-25 16:08:37 -08:00
Ryan VanderMeulen
2abee72911
Backed out changeset 2b3bda5a4744 (bug 975169) for Marionette-webapi failures.
2014-02-24 15:04:53 -05:00
Malini Das
243f81f7c1
Bug 975169 - Marionette test runner should not override textrunnerclass, version bump, r=jgriffiin,dburns
2014-02-24 12:11:08 -05:00
Andreas Tolfsen
dd71988372
Bug 964366 - Session capabilities missing browserVersion. r=mdas
2014-02-20 15:36:56 -05:00
Andreas Tolfsen
0dfad40f0e
Bug 962182 - Add "screenshot" command alias to Marionette. r=mdas
2014-02-20 15:36:35 -05:00
Andrew Halberstadt
91fe25a46d
Bug 972518 - Log qemu output to prevent stdout pipe from filling up, r=jgriffin
2014-02-20 09:28:22 -05:00
Andreas Tolfsen
dc7f43c60c
Bug 969387 - Guard against wrong arguments to MarionetteException. r=mdas
2014-02-20 08:43:55 -05:00
Malini Das
ed66dbd708
Bug 974165 - bump marionette-client version to 0.7.4 and release to pypi
2014-02-19 16:28:12 -05:00
Conrad Irwin
e115efe2f3
Bug 762556 - Error stack should contain column number. r=jorendorff
2014-02-19 11:30:08 -05:00
Nicolas B. Pierron
ba2022ad67
Bug 970996 - Initialize the deviceManager's device-serial based on Marionette CLI. r=mdas
2014-02-19 07:55:50 -08:00
Wes Kocher
782cf1ef3a
Backed out changeset 018ee8ea0c12 (bug 972518) for breaking Mnw jobs on a CLOSED TREE
2014-02-18 16:47:51 -08:00
Andrew Halberstadt
529b829a83
Bug 972518 - Log qemu output to prevent stdout buffer from filling, r=jgriffin
2014-02-18 16:20:44 -05:00
Vicamo Yang
0114db1bf2
Bug 970804 - 3/3: add test cases. r=mdas
2014-02-18 14:04:50 +08:00
Vicamo Yang
7a0b374e73
Bug 970804 - 2/3: only launch test-container app when not available. r=mdas
2014-02-18 14:04:49 +08:00
Vicamo Yang
795ab447ae
Bug 970804 - 1/3: refine Marionette oop test case selection. r=mdas
...
1) ./mach marionette-webapi <dir>/
- selects all test cases under <dir> and execute them only in
in-process mode.
2) ./mach marionette-webapi --type=+oop <dir>/
- selects all test cases under <dir> and execute them only in oop
mode.
3) ./mach marionette-webapi --type=-oop <dir>/
- selects all test cases under <dir> and execute them only in
in-process mode.
4) ./mach marionette-webapi <test>
- execute <test> only in in-process mode.
5) ./mach marionette-webapi --type=+oop <test>
- execute <test> only in oop mode.
6) ./mach marionette-webapi --type=-oop <test>
- execute <test> only in in-process mode.
7) ./mach marionette-webapi <dir>/manifest.ini
- selects all active test cases listed in <dir>/manifest.ini and
execute them in the mode(s) according to the manifest.
8) ./mach marionette-webapi --type=+oop <dir>/manifest.ini
- selects all active, oop={true,both} test cases listed in
<dir>/manifest.ini and execute them only in oop mode.
9) ./mach marionette-webapi --type=-oop <dir>/manifest.ini
- selects all active, oop={false,both} test cases listed in
<dir>/manifest.ini and execute them only in in-process mode.
2014-02-18 14:04:48 +08:00
Masayuki Nakano
b3b19a9e2f
Bug 969247 part.1 Remove or replace DOM_VK_ENTER and NS_VK_ENTER users r=smaug
2014-02-15 09:57:39 +09:00
Thomas Zimmermann
bf8276253c
Bug 935525: Added NFC test infrastructure to build scripts, r=vyang,jgriffin
2013-11-06 12:59:41 +01:00
Andreas Tolfsen
d698dad175
Bug 964367 - Fix incorrect format on platformName capability. r=mdas
...
The platformName capability (which AFAICT isn't checked in use by any
dependants) should be a limited subset of prescribed platforms as
defined by the WebDriver specification. System.appinfo.OS returns the
correct values, but not upper cased.
Additionally this patch introduces some tests and documentation for
the getSessionCapabilities function in Marionette and cleans up the
capability list.
2014-02-10 15:58:46 -05:00
Andrew Halberstadt
f27311905f
Bug 949028 - Marionette runner should check for crash after each test, r=mdas
2014-02-10 14:08:39 -05:00
Malini Das
e9b2654700
Bug 959520 - Make socket.timeout error messages more useful, r=jgriffin
2014-02-10 10:10:45 -05:00
Andreas Tolfsen
0fd697a765
Bug 940554 - Fix Marionette's newSession to return capabilities. r=mdas
2014-02-07 10:21:49 -05:00
Ryan VanderMeulen
6b07dd0f8d
Backed out changeset 5d1c157bbb46 (bug 940554) for changing the Marionette script timeout message in a TBPL-unfriendly way.
...
CLOSED TREE
2014-02-06 15:37:48 -05:00
Andreas Tolfsen
0096017c5d
Bug 941158 - Honour expected failures in setUp or tearDown. r=jgriffin
2014-02-06 14:57:29 -05:00
Andreas Tolfsen
6d27822d35
Bug 940554 - Fix Marionette's newSession to return capabilities. r=mdas
2014-02-06 09:46:28 -05:00
Wes Kocher
a56c855b8e
Backed out changeset a246bbc0c61c (bug 941158) for marionette bustage
2014-02-05 15:17:52 -08:00
Andreas Tolfsen
021a30a380
Bug 941158 - Honour expected failures in setUp or tearDown. r=zac
2014-02-05 17:04:42 -05:00
Andreas Tolfsen
03f5cc241e
Bug 938228 - Fix marshaling of NodeList in executeScript. r=mdas
2014-02-05 17:04:42 -05:00
David Burns
d2fd82b4f6
Bug 874868: Make sure that Marionette takes a screenshot of the the entire content canvas; r=mdas
2014-02-05 21:38:12 +00:00
Andrew Halberstadt
beb064b22a
Bug 949028 - Add check for crashes to geckoinstance.py, r=mdas
2014-02-04 08:53:18 -05:00
Fabrice Desré
da7e46af81
Bug 966502 - Use Cu.cloneInto() instead of ObjectWrapper.jsm r=baku
2014-02-01 11:06:59 -08:00
David Burns
0063737dca
Bug 965986: Correct typo in exception in Marionette Wait; r=mdas
2014-01-30 22:38:25 +00:00
Malini Das
6e60cd0ae3
Bug 965782 - ignore certain delete_session exceptions in Marionette cleanup, r=wlach
2014-01-30 15:14:04 -05:00
Jonathan Griffin
98de3142f3
Bug 948895 - Increase wait-for-homescreen timeout, r=ahal
2014-01-30 10:00:08 -08:00
Wes Kocher
88f1a2e0d5
Backed out changeset e5dfc4abbb91 (bug 940554) for b2g test bustage across the board on a CLOSED TREE
2014-01-28 18:23:22 -08:00
Dave Hunt
0f7bfe5628
Bug 952530 - List all skipped/disabled tests rather than just the conditionally skipped tests. r=jgriffin
2014-01-28 15:28:56 -08:00
Andreas Tolfsen
456f67ec4a
Bug 940554 - Fix Marionette's newSession to return capabilities. r=mdas
2014-01-28 17:54:44 -05:00
Dave Hunt
06e7c3aa24
Bug 963299 - Bump marionette_client version to 0.7.3. r=mdas
2014-01-28 13:02:43 +00:00
Phil Ringnalda
44a41bb21e
Back out a37e6c57ae0f (bug 959520) for making marionette-webapi infinitely retry
2014-01-27 20:09:52 -08:00
David Burns
cfe6cfe118
Bug 959186 - Remove platform capability in favour of platformName; r=mdas
2014-01-27 23:42:10 +00:00
Andreas Tolfsen
b54635569b
Bug 963598 - Allow custom message when Wait.until times out. r=dburns
2014-01-27 15:40:51 -05:00
Malini Das
500bfc3124
Bug 959520 - Make socket.timeout error messages more useful, r=jgriffin
2014-01-27 15:07:50 -05:00
Andreas Tolfsen
219b6a3b2f
Bug 963166 - Add getWindowHandles end-point for WebDriver compatibility. r=dburns
2014-01-27 08:18:27 -05:00
Adarsh Dinesh
674912704c
Bug 961648 - Provide a helpful error message when test variables JSON file cannot be parsed; r=dhunt
2014-01-27 10:53:47 +00:00
Andreas Tolfsen
de5bdba6a9
Bug 963162 - Add WebDriver compatible getWindowHandle alias. r=dburns
...
getCurrentWindowHandle and getWindow are both aliases to this command
now.
2014-01-24 10:47:54 -05:00
Andreas Tolfsen
cf47dd075e
Bug 941148 - Rename screenShot to takeScreenshot for webdriver compliance. r=dburns
2014-01-24 08:45:58 -05:00
Andreas Tolfsen
9397f67d75
Bug 941145 - Rename goUrl to get for WebDriver compatibility. r=dburns
2014-01-24 08:39:23 -05:00
Andreas Tolfsen
ef65e8ac1d
Bug 941144 - getWindows not matching Selenium command. r=dburns
2014-01-24 08:30:10 -05:00
Andreas Tolfsen
192cd998cb
Bug 948075 - Add expected conditions to Marionette. r=mdas r=dhunt
2014-01-24 12:22:12 +00:00
Andreas Tolfsen
11c33eaff6
Bug 961792 - Break iteration when browser is found. r=mdas
...
The iteration used to look up the current window's server-assigned
unique identifier in Marionette continues after the response has been
sent. This is unnecessary and a potential synchronization problem
because the client only expects a single response.
2014-01-21 13:31:32 -05:00
Andreas Tolfsen
4cc3306e81
Bug 941132 - getElementPosition not matching webdriver command. r=dburns
2014-01-22 14:04:04 -05:00
Andreas Tolfsen
7c1599c82c
Bug 941136 - getUrl not matching webdriver command getCurrentUrl. r=dburns
2014-01-21 13:31:31 -05:00
Andreas Tolfsen
7571828c3f
Bug 958024 - Wrap last exception from Marionette's Wait in TimeoutException. r=davehunt, r=mdas
2014-01-22 12:24:49 -05:00
William Lachance
c8f983269b
Bug 961874 - Python client should delete marionette session in cleanup(). r=mdas
2014-01-22 10:44:26 -05:00
Ryan VanderMeulen
8f59cb59b9
Backed out 3 changesets (bug 941132, bug 941136, bug 961792) for breaking the Marionette harness. CLOSED TREE
...
Backed out changeset 301044380886 (bug 961792)
Backed out changeset 236a56500ef3 (bug 941132)
Backed out changeset 02130207774e (bug 941136)
2014-01-21 14:47:41 -05:00
Andreas Tolfsen
6a4c89923e
Bug 961792 - Break iteration when browser is found. r=mdas
...
The iteration used to look up the current window's server-assigned
unique identifier in Marionette continues after the response has been
sent. This is unnecessary and a potential synchronization problem
because the client only expects a single response.
2014-01-21 13:31:32 -05:00
Andreas Tolfsen
03306765c0
Bug 941132 - getElementPosition not matching webdriver command. r=dburns
2014-01-21 13:31:31 -05:00
Andreas Tolfsen
6df0beb299
Bug 941136 - getUrl not matching webdriver command getCurrentUrl. r=dburns
2014-01-21 13:31:31 -05:00
Andreas Tolfsen
526415a16a
Bug 941140 - getWindow not matching webdriver command. r=dburns
2014-01-21 11:40:20 -05:00
Andreas Tolfsen
cc1b54655c
Bug 941129 - Fix getAllCookies not matching WebDriver command. r=dburns
...
The protocol command getAllCookies remains for backwards compatibility.
2014-01-21 11:40:20 -05:00
Ryan VanderMeulen
e216abf30b
Merge b2g-inbound to m-c.
2014-01-17 15:04:32 -05:00
Carsten "Tomcat" Book
4d4fd60b5a
Merge mozilla-central to b2g-inbound
2014-01-17 11:06:46 +01:00
Andrew Halberstadt
1e857aeb4a
Bug 960375 - Marionette runner should pass mozinfo.info into manifestparser, r=mdas
2014-01-17 12:42:40 +08:00
Andreas Tolfsen
b279dbf288
Bug 941102 - Fix closeWindow not matching WebDriver command close. r=dburns
...
The closeWindow request type name has been left for backwards
compatibility.
2014-01-17 10:03:43 -05:00
Andreas Tolfsen
487bf41fb6
Bug 936044 - Fix wrong license header for Marionette atoms. r=dburns
...
The atoms come licensed under the Apache 2.0 License from the Selenium
project.
2014-01-17 10:03:43 -05:00
Edgar Chen
5284ea1427
Bug 956655 - Part 1: Move MobileConnection related files to dom/mobileconnection. r=smaug,khuey
...
--HG--
rename : dom/network/interfaces/nsIDOMMobileConnection.idl => dom/mobileconnection/interfaces/nsIDOMMobileConnection.idl
rename : dom/network/interfaces/nsIMobileConnectionProvider.idl => dom/mobileconnection/interfaces/nsIMobileConnectionProvider.idl
rename : dom/network/tests/marionette/manifest.ini => dom/mobileconnection/tests/marionette/manifest.ini
rename : dom/network/tests/marionette/test_call_barring_change_password.js => dom/mobileconnection/tests/marionette/test_call_barring_change_password.js
rename : dom/network/tests/marionette/test_call_barring_get_option.js => dom/mobileconnection/tests/marionette/test_call_barring_get_option.js
rename : dom/network/tests/marionette/test_call_barring_set_error.js => dom/mobileconnection/tests/marionette/test_call_barring_set_error.js
rename : dom/network/tests/marionette/test_mobile_connections_array_uninitialized.js => dom/mobileconnection/tests/marionette/test_mobile_connections_array_uninitialized.js
rename : dom/network/tests/marionette/test_mobile_data_connection.js => dom/mobileconnection/tests/marionette/test_mobile_data_connection.js
rename : dom/network/tests/marionette/test_mobile_data_location.js => dom/mobileconnection/tests/marionette/test_mobile_data_location.js
rename : dom/network/tests/marionette/test_mobile_data_state.js => dom/mobileconnection/tests/marionette/test_mobile_data_state.js
rename : dom/network/tests/marionette/test_mobile_icc_change.js => dom/mobileconnection/tests/marionette/test_mobile_icc_change.js
rename : dom/network/tests/marionette/test_mobile_last_known_network.js => dom/mobileconnection/tests/marionette/test_mobile_last_known_network.js
rename : dom/network/tests/marionette/test_mobile_mmi.js => dom/mobileconnection/tests/marionette/test_mobile_mmi.js
rename : dom/network/tests/marionette/test_mobile_networks.js => dom/mobileconnection/tests/marionette/test_mobile_networks.js
rename : dom/network/tests/marionette/test_mobile_operator_names.js => dom/mobileconnection/tests/marionette/test_mobile_operator_names.js
rename : dom/network/tests/marionette/test_mobile_preferred_network_type.js => dom/mobileconnection/tests/marionette/test_mobile_preferred_network_type.js
rename : dom/network/tests/marionette/test_mobile_preferred_network_type_by_setting.js => dom/mobileconnection/tests/marionette/test_mobile_preferred_network_type_by_setting.js
rename : dom/network/tests/marionette/test_mobile_roaming_preference.js => dom/mobileconnection/tests/marionette/test_mobile_roaming_preference.js
rename : dom/network/tests/marionette/test_mobile_set_radio.js => dom/mobileconnection/tests/marionette/test_mobile_set_radio.js
rename : dom/network/tests/marionette/test_mobile_voice_state.js => dom/mobileconnection/tests/marionette/test_mobile_voice_state.js
2013-12-24 15:55:52 +08:00
Edgar Chen
972f9a3c01
Backed out changeset 10348da2438a (Bug 956655)
2014-01-17 13:08:59 +08:00
Edgar Chen
713b19196f
Bug 956655 - Part 1: Move MobileConnection related files to dom/mobileconnection. r=smaug,khuey
...
--HG--
rename : dom/network/interfaces/nsIDOMMobileConnection.idl => dom/mobileconnection/interfaces/nsIDOMMobileConnection.idl
rename : dom/network/interfaces/nsIMobileConnectionProvider.idl => dom/mobileconnection/interfaces/nsIMobileConnectionProvider.idl
rename : dom/network/src/MobileConnection.cpp => dom/mobileconnection/src/MobileConnection.cpp
rename : dom/network/src/MobileConnection.h => dom/mobileconnection/src/MobileConnection.h
rename : dom/network/src/MobileConnectionArray.cpp => dom/mobileconnection/src/MobileConnectionArray.cpp
rename : dom/network/src/MobileConnectionArray.h => dom/mobileconnection/src/MobileConnectionArray.h
rename : dom/network/tests/marionette/manifest.ini => dom/mobileconnection/tests/marionette/manifest.ini
rename : dom/network/tests/marionette/test_call_barring_change_password.js => dom/mobileconnection/tests/marionette/test_call_barring_change_password.js
rename : dom/network/tests/marionette/test_call_barring_get_option.js => dom/mobileconnection/tests/marionette/test_call_barring_get_option.js
rename : dom/network/tests/marionette/test_call_barring_set_error.js => dom/mobileconnection/tests/marionette/test_call_barring_set_error.js
rename : dom/network/tests/marionette/test_mobile_data_connection.js => dom/mobileconnection/tests/marionette/test_mobile_data_connection.js
rename : dom/network/tests/marionette/test_mobile_data_location.js => dom/mobileconnection/tests/marionette/test_mobile_data_location.js
rename : dom/network/tests/marionette/test_mobile_data_state.js => dom/mobileconnection/tests/marionette/test_mobile_data_state.js
rename : dom/network/tests/marionette/test_mobile_last_known_network.js => dom/mobileconnection/tests/marionette/test_mobile_last_known_network.js
rename : dom/network/tests/marionette/test_mobile_mmi.js => dom/mobileconnection/tests/marionette/test_mobile_mmi.js
rename : dom/network/tests/marionette/test_mobile_networks.js => dom/mobileconnection/tests/marionette/test_mobile_networks.js
rename : dom/network/tests/marionette/test_mobile_operator_names.js => dom/mobileconnection/tests/marionette/test_mobile_operator_names.js
rename : dom/network/tests/marionette/test_mobile_preferred_network_type.js => dom/mobileconnection/tests/marionette/test_mobile_preferred_network_type.js
rename : dom/network/tests/marionette/test_mobile_preferred_network_type_by_setting.js => dom/mobileconnection/tests/marionette/test_mobile_preferred_network_type_by_setting.js
rename : dom/network/tests/marionette/test_mobile_roaming_preference.js => dom/mobileconnection/tests/marionette/test_mobile_roaming_preference.js
rename : dom/network/tests/marionette/test_mobile_set_radio.js => dom/mobileconnection/tests/marionette/test_mobile_set_radio.js
rename : dom/network/tests/marionette/test_mobile_voice_state.js => dom/mobileconnection/tests/marionette/test_mobile_voice_state.js
2013-12-24 15:55:52 +08:00
Ryan VanderMeulen
b05202b7e2
Merge inbound to m-c.
2014-01-16 15:06:12 -05:00
David Burns
63f9054026
Bug 927285: Fix for intermittent on test_submit.py; r=me
2014-01-16 15:57:18 +00:00
Jonathan Griffin
3ccfbd9601
Bug 959730 - Move cleanup logic out of __del__, r=dburns
2014-01-15 11:58:54 -08:00
Ed Morley
aa88ab2dc2
Merge mozilla-central and b2g-inbound
...
--HG--
rename : content/events/src/nsDOMEvent.h => dom/events/nsDOMEvent.h
2014-01-15 18:09:12 +00:00
Alexandre Poirot
291e390c9f
Bug 891882 - Activate touch events on b2g desktop. r=vingtetun, r=mdas
2014-01-15 09:28:04 -05:00
Malini Das
a426c588b6
Bug 956803 - Fix busted autogen docs, r=wlach
2014-01-15 15:18:23 +08:00
David Burns
ff76fb9b95
Bug 951453: Updating capabilities of Marionette; r=mdas
2013-12-18 00:19:11 +00:00
Andreas Tolfsen
a26664112d
Bug 957248 - Use marionette.timeout if no explicit timeout is given for Wait. r=davehunt
2014-01-10 08:48:56 -05:00
Andreas Tolfsen
4f0de9f668
Bug 957162 - Marionette Wait's should indicate timeout duration. r=davehunt
2014-01-08 16:06:05 -05:00
Dave Hunt
d317da5c6e
Bug 950641 - Automatically use the appropriate GeckoInstance class. r=jgriffin
2013-12-20 13:12:40 +00:00
Rob Wood
1e8dc055f7
Bug 925688 - Marionette unit test intermittent failure, temporarily disable the test; r=mdas
2013-12-18 19:10:22 -05:00
Ryan VanderMeulen
10ea66eca4
Backed out changeset aad5b9304896 (bug 951453) for Gaia UI test perma-fail.
2013-12-18 14:20:09 -05:00
Dave Hunt
ee896e3b27
Bug 867600 - Change hardcoded sleeps into waits. r=mdas
2013-12-18 17:30:25 +00:00
Dave Hunt
fcdca3a1c0
Bug 947205 - fix missing test durations from the HTML report, r=mdas
2013-12-18 13:25:38 -05:00
David Burns
37b615116e
Bug 951453: Updating capabilities of Marionette; r=mdas
2013-12-18 16:40:14 +00:00
Malini Das
0e0456092c
Bug 950098 - Remove dependency on pylib, r=ahal
2013-12-18 11:20:16 -05:00
Ryan VanderMeulen
01e5988548
Merge m-c to inbound.
2013-12-17 16:20:31 -05:00
Ryan VanderMeulen
2184455416
Merge b2g-inbound to m-c.
2013-12-17 16:17:49 -05:00
Andreas Tolfsen
75bd548855
Bug 850881 - Implement explicit Marionette wait condition class. r=davehunt, r=mdas
2013-12-17 10:51:18 -05:00
Andreas Tolfsen
aa24133262
Bug 804515 - Add screen orientation commands to Marionette
...
setScreenOrientation allows for a subset of the permitted orientation
change values that screen.mozLockOrientation can take. Specifically
portrait, landscape, portrait-primary, landscape-primary,
portrait-secondary, landscape-secondary.
Due to W3C bug 23950 both error replies use the non-descriptive 500
status code. I've filed bug 945734 about this.
---
testing/marionette/client/marionette/marionette.py | 47 +++++++++--
.../tests/unit/test_screen_orientation.py | 90 ++++++++++++++++++++++
.../client/marionette/tests/unit/unit-tests.ini | 2 +
testing/marionette/marionette-server.js | 50 +++++++++++-
4 files changed, 183 insertions(+), 6 deletions(-)
create mode 100644 testing/marionette/client/marionette/tests/unit/test_screen_orientation.py
2013-12-17 11:01:29 -05:00
Malini Das
8f43f2233d
Bug 950729 - fix docstring error for flick, r=dburns
2013-12-17 10:57:45 -05:00
Vicamo Yang
bc036ae1ce
Bug 949398: fix missing MarionetteTestOptions. r=jgriffin
2013-12-17 10:17:08 +08:00
David Burns
24fa8e2be1
Bug 942730 - allow Marionette to type into input type=number fields; r=mdas
2013-12-16 16:40:51 +00:00
Bill McCloskey
3f0323f510
Bug 682048 - Change B2G frame script handling to support anon/global scope (r=fabrice)
2013-11-23 21:32:39 -08:00
Bill McCloskey
f833fb3bba
Bug 682048 - Change Firefox frame script handling to support anon/global scope (r=felipe)
2013-11-23 21:32:27 -08:00
Malini Das
0b1592e707
Bug 951153 - fix unclear error message if manifest has a non-existent file, r=jgriffin
2013-12-17 14:51:59 -05:00
Gregory Szorc
158ed8b3ec
Bug 774572 - Part 2: Define JAR_MANIFESTS in moz.build files; r=glandium
...
Every directory with a jar.mn now has JAR_MANIFESTS defined in its
moz.build file.
We also removed the may_skip special consideration of jar.mn files
because this information is now available during tier traversal by the
reader courtesy of the variables being present in moz.build files.
--HG--
extra : rebase_source : 21049b15e6bd9cf65b0805ccaccc4ba5aae93c98
extra : amend_source : 0b1ea866d725beef92d37c6f6d475369ac002e19
2013-12-10 16:18:11 +09:00
Vicamo Yang
2b9f628cc2
Bug 939441: B2G Bluetooth: add test cases for navigator.BluetoothManager.enabled. r=echou, f=jgriffin
2013-12-13 15:31:16 +08:00
Dave Hunt
bced348340
Bug 949406 - Bump marionette_client version to 0.7.1, r=mdas
2013-12-12 10:30:17 -05:00
Dave Hunt
d162f7a3e9
Bug 949401 - Marionette python client is missing resources from latest marionette_client 0.7.0, r=mdas
2013-12-12 10:26:37 -05:00
Nicolas B. Pierron
948c7fd2f2
Bug 948992 - Copy the deviceSerial to ADB's device manager. r=jgriffin
2013-12-12 06:35:00 -08:00
Malini Das
b64b9a9015
Bug 925398 - Refactor runtests.py to follow Mixin pattern, r=jgriffin, followup patch
2013-12-11 09:23:06 -05:00
Malini Das
878a3cbcfe
Bug 925398 - Refactor runtests.py to follow Mixin pattern, r=jgriffin
2013-12-11 07:45:19 -05:00
Ryan VanderMeulen
e58ec03427
Merge b2g-inbound to m-c.
2013-12-10 15:38:44 -05:00
Jonathan Griffin
3b454323dc
Bug 926280 - Support OOP webapi tests, r=vicamo
2013-12-09 20:17:54 -08:00
Edgar Chen
3e99923794
Bug 946753 - Marionette doesn't report error if the test script in manifest is missing. r=jgriffin
2013-12-07 23:52:14 +08:00
Ryan VanderMeulen
75e87f8bee
Backed out changeset 076fc4bc773c (bug 925398) for Gu bustage on a CLOSED TREE.
2013-12-05 14:26:41 -05:00
Malini Das
16df4b1902
Bug 925398: Refactor runtests.py to follow Mixin pattern, r=jgriffin
2013-12-05 11:46:54 -05:00
Ryan VanderMeulen
3558ffd353
Backed out changesets e7aa50b69994, bc00eed50b7d, and 30a8127b9277 (bug 682048) for causing frequent B2G reftest timeouts.
...
CLOSED TREE
2013-12-03 22:44:28 -05:00
Bill McCloskey
82c005bc0e
Bug 682048 - Change B2G frame script handling to support anon/global scope (r=fabrice)
2013-11-23 21:32:39 -08:00
Bill McCloskey
76f6c41257
Bug 682048 - Change Firefox frame script handling to support anon/global scope (r=felipe)
2013-11-23 21:32:27 -08:00
Mike Hommey
9245936f8b
Bug 874266 - Move all DEFINES that can be moved to moz.build. r=mshal
2013-11-27 22:55:07 +09:00
Mike Hommey
2b828323f2
Backout changeset 3fd4b546eed4 (bug 874266) and changeset a35d2e3a872f (bug 942043) for ASAN build bustage and Windows test bustage
...
--HG--
extra : amend_source : f20d09aeff1c8b5cbd0f1d24c7ce04e86f3aed1d
2013-11-28 14:24:05 +09:00
Mike Hommey
d210f8ff00
Bug 874266 - Move all DEFINES that can be moved to moz.build. r=mshal
2013-11-28 13:08:16 +09:00
David Burns
bc79bd1bd2
Bug 938242: Remove the visibility checks for touch actions in Marionette; r=mdas
2013-11-27 21:37:34 +00:00
Jonathan Griffin
280724e467
Bug 943240 - Pin virtualenv version, r=m1, DONTBUILD because NPOTB
2013-11-26 16:37:09 -08:00
Jed Davis
1b1d0dc2c3
Bug 941340 - Avoid forbidden content-process mkdir in marionette listener. r=mdas
2013-11-26 17:25:24 -05:00
Jonathan Griffin
e2b72f63d8
Bug 905324 - Increase wait_for_port timeout, r=ahal
2013-11-25 11:05:43 -08:00
Hasil Sharma
ce20f451d3
Bug 931367 - UnboundLocalError when generating an XML report with no results. r=dhunt
2013-11-12 10:18:00 +00:00
Askeing Yen
1a9388e4b2
Bug 931681 - [Marionette] Modify the output format for repeat option. r=mdas
2013-10-31 11:21:55 +08:00
Jonathan Griffin
34b5765caf
Bug 937272 - Increase Marionette's socket timeout, r=aknow
2013-11-11 18:31:56 -08:00
Malini Das
706de51d2c
Bug 936019 - fix intermittent test_findelement.py, r=jgriffin
2013-11-11 16:59:27 -05:00
Sebastiaan de Haan
c34109d161
Bug 937097 - Bump marionette_client version to 0.6.2. r=dhunt
2013-11-11 05:55:00 +00:00
Sebastiaan de Haan
f75f2f1fea
Bug 818287 Remove data URL prefix from screenshots. r=dhunt
2013-11-08 07:27:00 +00:00
Jonathan Griffin
24369b90b9
Bug 934555 - Report filenames for errors in JS files, r=mdas
2013-11-06 13:43:16 -08:00
Malini Das
5b60aaca99
Bug 832366 - remove venv_test.sh, r=jgriffin
2013-11-01 10:57:44 -04:00
Malini Das
1e6348aaff
Bug 918408 - remove marionette.log file, enable stdout logging via pref for non-debug/non-b2g builds, r=jgriffin
2013-10-29 13:45:13 -04:00
Robert Strong
f73022b0b2
App update test only changes and build changes for tests. Reorganize app update test structure and remove unneeded Makefiles and moz.build files for Bug 929149. r=bbondy, r=gps for build changes
...
--HG--
rename : toolkit/mozapps/update/test/Makefile.in => toolkit/mozapps/update/tests/Makefile.in
rename : toolkit/mozapps/update/test/TestAUSHelper.cpp => toolkit/mozapps/update/tests/TestAUSHelper.cpp
rename : toolkit/mozapps/update/test/TestAUSReadStrings.cpp => toolkit/mozapps/update/tests/TestAUSReadStrings.cpp
rename : toolkit/mozapps/update/test/TestAUSReadStrings1.ini => toolkit/mozapps/update/tests/TestAUSReadStrings1.ini
rename : toolkit/mozapps/update/test/TestAUSReadStrings2.ini => toolkit/mozapps/update/tests/TestAUSReadStrings2.ini
rename : toolkit/mozapps/update/test/TestAUSReadStrings3.ini => toolkit/mozapps/update/tests/TestAUSReadStrings3.ini
rename : toolkit/mozapps/update/test/chrome/chrome.ini => toolkit/mozapps/update/tests/chrome/chrome.ini
rename : toolkit/mozapps/update/test/chrome/test_0011_check_basic.xul => toolkit/mozapps/update/tests/chrome/test_0011_check_basic.xul
rename : toolkit/mozapps/update/test/chrome/test_0012_check_basic_license.xul => toolkit/mozapps/update/tests/chrome/test_0012_check_basic_license.xul
rename : toolkit/mozapps/update/test/chrome/test_0013_check_incompat_basic.xul => toolkit/mozapps/update/tests/chrome/test_0013_check_incompat_basic.xul
rename : toolkit/mozapps/update/test/chrome/test_0014_check_incompat_basic_license.xul => toolkit/mozapps/update/tests/chrome/test_0014_check_incompat_basic_license.xul
rename : toolkit/mozapps/update/test/chrome/test_0015_check_incompat_basic_addons.xul => toolkit/mozapps/update/tests/chrome/test_0015_check_incompat_basic_addons.xul
rename : toolkit/mozapps/update/test/chrome/test_0016_check_incompat_basic_license_addons.xul => toolkit/mozapps/update/tests/chrome/test_0016_check_incompat_basic_license_addons.xul
rename : toolkit/mozapps/update/test/chrome/test_0017_check_staging_basic.xul => toolkit/mozapps/update/tests/chrome/test_0017_check_staging_basic.xul
rename : toolkit/mozapps/update/test/chrome/test_0021_check_billboard.xul => toolkit/mozapps/update/tests/chrome/test_0021_check_billboard.xul
rename : toolkit/mozapps/update/test/chrome/test_0022_check_billboard_license.xul => toolkit/mozapps/update/tests/chrome/test_0022_check_billboard_license.xul
rename : toolkit/mozapps/update/test/chrome/test_0023_check_incompat_billboard.xul => toolkit/mozapps/update/tests/chrome/test_0023_check_incompat_billboard.xul
rename : toolkit/mozapps/update/test/chrome/test_0024_check_incompat_billboard_license.xul => toolkit/mozapps/update/tests/chrome/test_0024_check_incompat_billboard_license.xul
rename : toolkit/mozapps/update/test/chrome/test_0025_check_incompat_billboard_addons.xul => toolkit/mozapps/update/tests/chrome/test_0025_check_incompat_billboard_addons.xul
rename : toolkit/mozapps/update/test/chrome/test_0026_check_incompat_billboard_license_addons.xul => toolkit/mozapps/update/tests/chrome/test_0026_check_incompat_billboard_license_addons.xul
rename : toolkit/mozapps/update/test/chrome/test_0031_available_basic.xul => toolkit/mozapps/update/tests/chrome/test_0031_available_basic.xul
rename : toolkit/mozapps/update/test/chrome/test_0032_available_basic_license.xul => toolkit/mozapps/update/tests/chrome/test_0032_available_basic_license.xul
rename : toolkit/mozapps/update/test/chrome/test_0033_available_incompat_basic.xul => toolkit/mozapps/update/tests/chrome/test_0033_available_incompat_basic.xul
rename : toolkit/mozapps/update/test/chrome/test_0034_available_incompat_basic_license.xul => toolkit/mozapps/update/tests/chrome/test_0034_available_incompat_basic_license.xul
rename : toolkit/mozapps/update/test/chrome/test_0035_available_incompat_basic_addons.xul => toolkit/mozapps/update/tests/chrome/test_0035_available_incompat_basic_addons.xul
rename : toolkit/mozapps/update/test/chrome/test_0036_available_incompat_basic_license_addons.xul => toolkit/mozapps/update/tests/chrome/test_0036_available_incompat_basic_license_addons.xul
rename : toolkit/mozapps/update/test/chrome/test_0041_available_billboard.xul => toolkit/mozapps/update/tests/chrome/test_0041_available_billboard.xul
rename : toolkit/mozapps/update/test/chrome/test_0042_available_billboard_license.xul => toolkit/mozapps/update/tests/chrome/test_0042_available_billboard_license.xul
rename : toolkit/mozapps/update/test/chrome/test_0043_available_incompat_billboard.xul => toolkit/mozapps/update/tests/chrome/test_0043_available_incompat_billboard.xul
rename : toolkit/mozapps/update/test/chrome/test_0044_available_incompat_billboard_license.xul => toolkit/mozapps/update/tests/chrome/test_0044_available_incompat_billboard_license.xul
rename : toolkit/mozapps/update/test/chrome/test_0045_available_incompat_billboard_addons.xul => toolkit/mozapps/update/tests/chrome/test_0045_available_incompat_billboard_addons.xul
rename : toolkit/mozapps/update/test/chrome/test_0046_available_incompat_billboard_license_addons.xul => toolkit/mozapps/update/tests/chrome/test_0046_available_incompat_billboard_license_addons.xul
rename : toolkit/mozapps/update/test/chrome/test_0051_check_error_xml_malformed.xul => toolkit/mozapps/update/tests/chrome/test_0051_check_error_xml_malformed.xul
rename : toolkit/mozapps/update/test/chrome/test_0052_check_no_updates.xul => toolkit/mozapps/update/tests/chrome/test_0052_check_no_updates.xul
rename : toolkit/mozapps/update/test/chrome/test_0053_check_billboard_license_noAttr.xul => toolkit/mozapps/update/tests/chrome/test_0053_check_billboard_license_noAttr.xul
rename : toolkit/mozapps/update/test/chrome/test_0054_check_billboard_license_404.xul => toolkit/mozapps/update/tests/chrome/test_0054_check_billboard_license_404.xul
rename : toolkit/mozapps/update/test/chrome/test_0061_check_verifyFailPartial_noComplete.xul => toolkit/mozapps/update/tests/chrome/test_0061_check_verifyFailPartial_noComplete.xul
rename : toolkit/mozapps/update/test/chrome/test_0062_check_verifyFailComplete_noPartial.xul => toolkit/mozapps/update/tests/chrome/test_0062_check_verifyFailComplete_noPartial.xul
rename : toolkit/mozapps/update/test/chrome/test_0063_check_verifyFailPartialComplete.xul => toolkit/mozapps/update/tests/chrome/test_0063_check_verifyFailPartialComplete.xul
rename : toolkit/mozapps/update/test/chrome/test_0064_check_verifyFailPartial_successComplete.xul => toolkit/mozapps/update/tests/chrome/test_0064_check_verifyFailPartial_successComplete.xul
rename : toolkit/mozapps/update/test/chrome/test_0071_notify_verifyFailPartial_noComplete.xul => toolkit/mozapps/update/tests/chrome/test_0071_notify_verifyFailPartial_noComplete.xul
rename : toolkit/mozapps/update/test/chrome/test_0072_notify_verifyFailComplete_noPartial.xul => toolkit/mozapps/update/tests/chrome/test_0072_notify_verifyFailComplete_noPartial.xul
rename : toolkit/mozapps/update/test/chrome/test_0073_notify_verifyFailPartialComplete.xul => toolkit/mozapps/update/tests/chrome/test_0073_notify_verifyFailPartialComplete.xul
rename : toolkit/mozapps/update/test/chrome/test_0074_notify_verifyFailPartial_successComplete.xul => toolkit/mozapps/update/tests/chrome/test_0074_notify_verifyFailPartial_successComplete.xul
rename : toolkit/mozapps/update/test/chrome/test_0081_error_patchApplyFailure_partial_only.xul => toolkit/mozapps/update/tests/chrome/test_0081_error_patchApplyFailure_partial_only.xul
rename : toolkit/mozapps/update/test/chrome/test_0082_error_patchApplyFailure_complete_only.xul => toolkit/mozapps/update/tests/chrome/test_0082_error_patchApplyFailure_complete_only.xul
rename : toolkit/mozapps/update/test/chrome/test_0083_error_patchApplyFailure_partial_complete.xul => toolkit/mozapps/update/tests/chrome/test_0083_error_patchApplyFailure_partial_complete.xul
rename : toolkit/mozapps/update/test/chrome/test_0084_error_patchApplyFailure_verify_failed.xul => toolkit/mozapps/update/tests/chrome/test_0084_error_patchApplyFailure_verify_failed.xul
rename : toolkit/mozapps/update/test/chrome/test_0091_installed.xul => toolkit/mozapps/update/tests/chrome/test_0091_installed.xul
rename : toolkit/mozapps/update/test/chrome/test_0092_finishedBackground.xul => toolkit/mozapps/update/tests/chrome/test_0092_finishedBackground.xul
rename : toolkit/mozapps/update/test/chrome/test_0093_restartNotification.xul => toolkit/mozapps/update/tests/chrome/test_0093_restartNotification.xul
rename : toolkit/mozapps/update/test/chrome/test_0094_restartNotification_remote.xul => toolkit/mozapps/update/tests/chrome/test_0094_restartNotification_remote.xul
rename : toolkit/mozapps/update/test/chrome/test_0095_restartNotification_remoteInvalidNumber.xul => toolkit/mozapps/update/tests/chrome/test_0095_restartNotification_remoteInvalidNumber.xul
rename : toolkit/mozapps/update/test/chrome/test_0096_restartNotification_stagedBackground.xul => toolkit/mozapps/update/tests/chrome/test_0096_restartNotification_stagedBackground.xul
rename : toolkit/mozapps/update/test/chrome/test_0097_restartNotification_stagedServiceBackground.xul => toolkit/mozapps/update/tests/chrome/test_0097_restartNotification_stagedServiceBackground.xul
rename : toolkit/mozapps/update/test/chrome/test_0101_background_restartNotification.xul => toolkit/mozapps/update/tests/chrome/test_0101_background_restartNotification.xul
rename : toolkit/mozapps/update/test/chrome/test_0102_background_restartNotification_staging.xul => toolkit/mozapps/update/tests/chrome/test_0102_background_restartNotification_staging.xul
rename : toolkit/mozapps/update/test/chrome/test_0103_background_restartNotification_stagingService.xul => toolkit/mozapps/update/tests/chrome/test_0103_background_restartNotification_stagingService.xul
rename : toolkit/mozapps/update/test/chrome/test_0111_neverButton_basic.xul => toolkit/mozapps/update/tests/chrome/test_0111_neverButton_basic.xul
rename : toolkit/mozapps/update/test/chrome/test_0112_neverButton_billboard.xul => toolkit/mozapps/update/tests/chrome/test_0112_neverButton_billboard.xul
rename : toolkit/mozapps/update/test/chrome/test_0113_showNeverForVersionRemovedWithPref.xul => toolkit/mozapps/update/tests/chrome/test_0113_showNeverForVersionRemovedWithPref.xul
rename : toolkit/mozapps/update/test/chrome/test_0121_check_requireBuiltinCert.xul => toolkit/mozapps/update/tests/chrome/test_0121_check_requireBuiltinCert.xul
rename : toolkit/mozapps/update/test/chrome/test_0122_check_allowNonBuiltinCert_validCertAttrs.xul => toolkit/mozapps/update/tests/chrome/test_0122_check_allowNonBuiltinCert_validCertAttrs.xul
rename : toolkit/mozapps/update/test/chrome/test_0123_check_allowNonBuiltinCert_noCertAttrsCheck.xul => toolkit/mozapps/update/tests/chrome/test_0123_check_allowNonBuiltinCert_noCertAttrsCheck.xul
rename : toolkit/mozapps/update/test/chrome/test_0131_check_invalidCertAttrs_noUpdate.xul => toolkit/mozapps/update/tests/chrome/test_0131_check_invalidCertAttrs_noUpdate.xul
rename : toolkit/mozapps/update/test/chrome/test_0132_check_invalidCertAttrs_hasUpdate.xul => toolkit/mozapps/update/tests/chrome/test_0132_check_invalidCertAttrs_hasUpdate.xul
rename : toolkit/mozapps/update/test/chrome/test_0141_notify_invalidCertAttrs_noUpdate.xul => toolkit/mozapps/update/tests/chrome/test_0141_notify_invalidCertAttrs_noUpdate.xul
rename : toolkit/mozapps/update/test/chrome/test_0142_notify_invalidCertAttrs_hasUpdate.xul => toolkit/mozapps/update/tests/chrome/test_0142_notify_invalidCertAttrs_hasUpdate.xul
rename : toolkit/mozapps/update/test/chrome/test_0151_notify_backgroundCheckError.xul => toolkit/mozapps/update/tests/chrome/test_0151_notify_backgroundCheckError.xul
rename : toolkit/mozapps/update/test/chrome/test_0161_check_unsupported.xul => toolkit/mozapps/update/tests/chrome/test_0161_check_unsupported.xul
rename : toolkit/mozapps/update/test/chrome/test_0162_notify_unsupported.xul => toolkit/mozapps/update/tests/chrome/test_0162_notify_unsupported.xul
rename : toolkit/mozapps/update/test/chrome/test_0900_deprecatedUpdateFormat_minor.xul => toolkit/mozapps/update/tests/chrome/test_0900_deprecatedUpdateFormat_minor.xul
rename : toolkit/mozapps/update/test/chrome/test_0901_deprecatedUpdateFormat_major.xul => toolkit/mozapps/update/tests/chrome/test_0901_deprecatedUpdateFormat_major.xul
rename : toolkit/mozapps/update/test/chrome/test_9999_cleanup.xul => toolkit/mozapps/update/tests/chrome/test_9999_cleanup.xul
rename : toolkit/mozapps/update/test/chrome/update.sjs => toolkit/mozapps/update/tests/chrome/update.sjs
rename : toolkit/mozapps/update/test/chrome/utils.js => toolkit/mozapps/update/tests/chrome/utils.js
rename : toolkit/mozapps/update/test/unit/data/complete.mar => toolkit/mozapps/update/tests/data/complete.mar
rename : toolkit/mozapps/update/test/unit/data/complete.png => toolkit/mozapps/update/tests/data/complete.png
rename : toolkit/mozapps/update/test/unit/data/complete_cc_log_switch_success => toolkit/mozapps/update/tests/data/complete_cc_log_switch_success
rename : toolkit/mozapps/update/test/unit/data/complete_log_success => toolkit/mozapps/update/tests/data/complete_log_success
rename : toolkit/mozapps/update/test/unit/data/complete_log_switch_success => toolkit/mozapps/update/tests/data/complete_log_switch_success
rename : toolkit/mozapps/update/test/unit/data/complete_precomplete => toolkit/mozapps/update/tests/data/complete_precomplete
rename : toolkit/mozapps/update/test/unit/data/complete_removed-files => toolkit/mozapps/update/tests/data/complete_removed-files
rename : toolkit/mozapps/update/test/unit/data/complete_update_manifest => toolkit/mozapps/update/tests/data/complete_update_manifest
rename : toolkit/mozapps/update/test/unit/data/complete_win.mar => toolkit/mozapps/update/tests/data/complete_win.mar
rename : toolkit/mozapps/update/test/unit/data/old_version_mar.mar => toolkit/mozapps/update/tests/data/old_version.mar
rename : toolkit/mozapps/update/test/unit/data/partial.mar => toolkit/mozapps/update/tests/data/partial.mar
rename : toolkit/mozapps/update/test/unit/data/partial.png => toolkit/mozapps/update/tests/data/partial.png
rename : toolkit/mozapps/update/test/unit/data/partial_in_use_win_after.exe => toolkit/mozapps/update/tests/data/partial_in_use_win_after.exe
rename : toolkit/mozapps/update/test/unit/data/partial_in_use_win_before.exe => toolkit/mozapps/update/tests/data/partial_in_use_win_before.exe
rename : toolkit/mozapps/update/test/unit/data/partial_log_failure => toolkit/mozapps/update/tests/data/partial_log_failure
rename : toolkit/mozapps/update/test/unit/data/partial_log_success => toolkit/mozapps/update/tests/data/partial_log_success
rename : toolkit/mozapps/update/test/unit/data/partial_log_switch_success => toolkit/mozapps/update/tests/data/partial_log_switch_success
rename : toolkit/mozapps/update/test/unit/data/partial_precomplete => toolkit/mozapps/update/tests/data/partial_precomplete
rename : toolkit/mozapps/update/test/unit/data/partial_removed-files => toolkit/mozapps/update/tests/data/partial_removed-files
rename : toolkit/mozapps/update/test/unit/data/partial_update_manifest => toolkit/mozapps/update/tests/data/partial_update_manifest
rename : toolkit/mozapps/update/test/unit/data/partial_win.mar => toolkit/mozapps/update/tests/data/partial_win.mar
rename : toolkit/mozapps/update/test/unit/data/simple.mar => toolkit/mozapps/update/tests/data/simple.mar
rename : toolkit/mozapps/update/test/unit/data/simple_no_pib.mar => toolkit/mozapps/update/tests/data/simple_no_pib.mar
rename : toolkit/mozapps/update/test/unit/data/wrong_product_channel_mar.mar => toolkit/mozapps/update/tests/data/wrong_product_channel.mar
rename : toolkit/mozapps/update/test/marionette/data/bad.xml => toolkit/mozapps/update/tests/marionette/data/bad.xml
rename : toolkit/mozapps/update/test/marionette/data/err.cgi => toolkit/mozapps/update/tests/marionette/data/err.cgi
rename : toolkit/mozapps/update/test/marionette/update-smoketests.ini => toolkit/mozapps/update/tests/marionette/update-smoketests.ini
rename : toolkit/mozapps/update/test/marionette/update-tests.ini => toolkit/mozapps/update/tests/marionette/update-tests.ini
rename : toolkit/mozapps/update/test/marionette/update_smoketest_ota_same_version.js => toolkit/mozapps/update/tests/marionette/update_smoketest_ota_same_version.js
rename : toolkit/mozapps/update/test/marionette/update_smoketest_ota_same_version.py => toolkit/mozapps/update/tests/marionette/update_smoketest_ota_same_version.py
rename : toolkit/mozapps/update/test/marionette/update_smoketest_ota_simple.js => toolkit/mozapps/update/tests/marionette/update_smoketest_ota_simple.js
rename : toolkit/mozapps/update/test/marionette/update_smoketest_ota_simple.py => toolkit/mozapps/update/tests/marionette/update_smoketest_ota_simple.py
rename : toolkit/mozapps/update/test/marionette/update_test_ota_simple.js => toolkit/mozapps/update/tests/marionette/update_test_ota_simple.js
rename : toolkit/mozapps/update/test/marionette/update_test_ota_simple.py => toolkit/mozapps/update/tests/marionette/update_test_ota_simple.py
rename : toolkit/mozapps/update/test/marionette/update_test_status.js => toolkit/mozapps/update/tests/marionette/update_test_status.js
rename : toolkit/mozapps/update/test/marionette/update_test_status.py => toolkit/mozapps/update/tests/marionette/update_test_status.py
rename : toolkit/mozapps/update/test/moz.build => toolkit/mozapps/update/tests/moz.build
rename : toolkit/mozapps/update/test/shared.js => toolkit/mozapps/update/tests/shared.js
rename : toolkit/mozapps/update/test/sharedUpdateXML.js => toolkit/mozapps/update/tests/sharedUpdateXML.js
rename : toolkit/mozapps/update/test/unit/test_0010_general.js => toolkit/mozapps/update/tests/unit_aus_update/canCheckForAndCanApplyUpdates.js
rename : toolkit/mozapps/update/test/unit/test_0063_manager.js => toolkit/mozapps/update/tests/unit_aus_update/cleanupDownloadingForDifferentChannel.js
rename : toolkit/mozapps/update/test/unit/test_0061_manager.js => toolkit/mozapps/update/tests/unit_aus_update/cleanupDownloadingForOlderAppVersion.js
rename : toolkit/mozapps/update/test/unit/test_0064_manager.js => toolkit/mozapps/update/tests/unit_aus_update/cleanupDownloadingForSameVersionAndBuildID.js
rename : toolkit/mozapps/update/test/unit/test_0072_update_dir_cleanup.js => toolkit/mozapps/update/tests/unit_aus_update/cleanupDownloadingIncorrectStatus.js
rename : toolkit/mozapps/update/test/unit/test_0073_update_dir_cleanup.js => toolkit/mozapps/update/tests/unit_aus_update/cleanupPendingVersionFileIncorrectStatus.js
rename : toolkit/mozapps/update/test/unit/test_0070_update_dir_cleanup.js => toolkit/mozapps/update/tests/unit_aus_update/cleanupSuccessLogMove.js
rename : toolkit/mozapps/update/test/unit/test_0071_update_dir_cleanup.js => toolkit/mozapps/update/tests/unit_aus_update/cleanupSuccessLogsFIFO.js
rename : toolkit/mozapps/update/test/unit/test_bug595059.js => toolkit/mozapps/update/tests/unit_aus_update/downloadCompleteAfterPartialFailure.js
rename : toolkit/mozapps/update/test/unit/test_bug833708.js => toolkit/mozapps/update/tests/unit_aus_update/downloadFileTooBig_gonk.js
rename : toolkit/mozapps/update/test/unit/test_bug794211.js => toolkit/mozapps/update/tests/unit_aus_update/downloadInterruptedByOfflineRetry.js
rename : toolkit/mozapps/update/test/unit/test_0030_general.js => toolkit/mozapps/update/tests/unit_aus_update/downloadMar.js
rename : toolkit/mozapps/update/test/unit/test_0062_manager.js => toolkit/mozapps/update/tests/unit_aus_update/downloadResumeForSameAppVersion.js
rename : toolkit/mozapps/update/test/unit/head_update.js.in => toolkit/mozapps/update/tests/unit_aus_update/head_update.js
rename : toolkit/mozapps/update/test/unit/test_0020_general.js => toolkit/mozapps/update/tests/unit_aus_update/remoteUpdateXML.js
rename : toolkit/mozapps/update/test/unit/test_0081_prompt_uiAlreadyOpen.js => toolkit/mozapps/update/tests/unit_aus_update/uiOnlyAllowOneWindow.js
rename : toolkit/mozapps/update/test/unit/test_0080_prompt_silent.js => toolkit/mozapps/update/tests/unit_aus_update/uiSilentPref.js
rename : toolkit/mozapps/update/test/unit/test_0082_prompt_unsupportAlreadyNotified.js => toolkit/mozapps/update/tests/unit_aus_update/uiUnsupportedAlreadyNotified.js
rename : toolkit/mozapps/update/test/unit/test_0050_general.js => toolkit/mozapps/update/tests/unit_aus_update/updateCheckOnLoadOnErrorStatusText.js
rename : toolkit/mozapps/update/test/unit/test_0060_manager.js => toolkit/mozapps/update/tests/unit_aus_update/updateManagerXML.js
rename : toolkit/mozapps/update/test/unit/test_0300_update_root_dir_migration.js => toolkit/mozapps/update/tests/unit_aus_update/updateRootDirMigration_win.js
rename : toolkit/mozapps/update/test/unit/test_0040_general.js => toolkit/mozapps/update/tests/unit_aus_update/urlConstruction.js
rename : toolkit/mozapps/update/test/unit/xpcshell.ini => toolkit/mozapps/update/tests/unit_aus_update/xpcshell.ini
rename : toolkit/mozapps/update/test/unit/test_0203_app_launch_apply_update.js => toolkit/mozapps/update/tests/unit_base_updater/marAppApplyUpdateAppBinInUseStageSuccess_win.js
rename : toolkit/mozapps/update/test/unit/test_0201_app_launch_apply_update.js => toolkit/mozapps/update/tests/unit_base_updater/marAppApplyUpdateStageSuccess.js
rename : toolkit/mozapps/update/test/unit/test_0200_app_launch_apply_update.js => toolkit/mozapps/update/tests/unit_base_updater/marAppApplyUpdateSuccess.js
rename : toolkit/mozapps/update/test/unit/test_0162_appInUse_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marAppInUseFallbackStageFailureComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0161_appInUse_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marAppInUseStageFailureComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0161_appInUse_xp_unix_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marAppInUseStageSuccessComplete_unix.js
rename : toolkit/mozapps/update/test/unit/test_0160_appInUse_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marAppInUseSuccessComplete.js
rename : toolkit/mozapps/update/test/unit/test_0152_appBinReplaced_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marCallbackAppStageSuccessComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0153_appBinPatched_xp_win_partial.js => toolkit/mozapps/update/tests/unit_base_updater/marCallbackAppStageSuccessPartial_win.js
rename : toolkit/mozapps/update/test/unit/test_0150_appBinReplaced_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marCallbackAppSuccessComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0151_appBinPatched_xp_win_partial.js => toolkit/mozapps/update/tests/unit_base_updater/marCallbackAppSuccessPartial_win.js
rename : toolkit/mozapps/update/test/unit/test_0202_app_launch_apply_update_dirlocked.js => toolkit/mozapps/update/tests/unit_base_updater/marDirLockedStageFailure_win.js
rename : toolkit/mozapps/update/test/unit/test_0112_general.js => toolkit/mozapps/update/tests/unit_base_updater/marFailurePartial.js
rename : toolkit/mozapps/update/test/unit/test_0188_fileInUse_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marFileInUseFallbackStageFailureComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0189_fileInUse_xp_win_partial.js => toolkit/mozapps/update/tests/unit_base_updater/marFileInUseFallbackStageFailurePartial_win.js
rename : toolkit/mozapps/update/test/unit/test_0184_fileInUse_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marFileInUseStageSuccessComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0185_fileInUse_xp_win_partial.js => toolkit/mozapps/update/tests/unit_base_updater/marFileInUseStageSuccessPartial_win.js
rename : toolkit/mozapps/update/test/unit/test_0180_fileInUse_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marFileInUseSuccessComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0181_fileInUse_xp_win_partial.js => toolkit/mozapps/update/tests/unit_base_updater/marFileInUseSuccessPartial_win.js
rename : toolkit/mozapps/update/test/unit/test_0170_fileLocked_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marFileLockedFailureComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0171_fileLocked_xp_win_partial.js => toolkit/mozapps/update/tests/unit_base_updater/marFileLockedFailurePartial_win.js
rename : toolkit/mozapps/update/test/unit/test_0174_fileLocked_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marFileLockedFallbackStageFailureComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0175_fileLocked_xp_win_partial.js => toolkit/mozapps/update/tests/unit_base_updater/marFileLockedFallbackStageFailurePartial_win.js
rename : toolkit/mozapps/update/test/unit/test_0172_fileLocked_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marFileLockedStageFailureComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0173_fileLocked_xp_win_partial.js => toolkit/mozapps/update/tests/unit_base_updater/marFileLockedStageFailurePartial_win.js
rename : toolkit/mozapps/update/test/unit/test_0190_rmrfdirFileInUse_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marRMRFDirFileInUseFallbackStageFailureComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0191_rmrfdirFileInUse_xp_win_partial.js => toolkit/mozapps/update/tests/unit_base_updater/marRMRFDirFileInUseFallbackStageFailurePartial_win.js
rename : toolkit/mozapps/update/test/unit/test_0186_rmrfdirFileInUse_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marRMRFDirFileInUseStageSuccessComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0187_rmrfdirFileInUse_xp_win_partial.js => toolkit/mozapps/update/tests/unit_base_updater/marRMRFDirFileInUseStageSuccessPartial_win.js
rename : toolkit/mozapps/update/test/unit/test_0182_rmrfdirFileInUse_xp_win_complete.js => toolkit/mozapps/update/tests/unit_base_updater/marRMRFDirFileInUseSuccessComplete_win.js
rename : toolkit/mozapps/update/test/unit/test_0183_rmrfdirFileInUse_xp_win_partial.js => toolkit/mozapps/update/tests/unit_base_updater/marRMRFDirFileInUseSuccessPartial_win.js
rename : toolkit/mozapps/update/test/unit/test_0115_general.js => toolkit/mozapps/update/tests/unit_base_updater/marStageFailurePartial.js
rename : toolkit/mozapps/update/test/unit/test_0113_general.js => toolkit/mozapps/update/tests/unit_base_updater/marStageSuccessComplete.js
rename : toolkit/mozapps/update/test/unit/test_0114_general.js => toolkit/mozapps/update/tests/unit_base_updater/marStageSuccessPartial.js
rename : toolkit/mozapps/update/test/unit/test_0110_general.js => toolkit/mozapps/update/tests/unit_base_updater/marSuccessComplete.js
rename : toolkit/mozapps/update/test/unit/test_0111_general.js => toolkit/mozapps/update/tests/unit_base_updater/marSuccessPartial.js
rename : toolkit/mozapps/update/test/unit/test_0113_versionDowngradeCheck.js => toolkit/mozapps/update/tests/unit_base_updater/marVersionDowngrade.js
rename : toolkit/mozapps/update/test/unit/test_0114_productChannelCheck.js => toolkit/mozapps/update/tests/unit_base_updater/marWrongChannel.js
rename : toolkit/mozapps/update/test/unit/xpcshell_updater.ini => toolkit/mozapps/update/tests/unit_base_updater/xpcshell.ini
rename : toolkit/mozapps/update/test_svc/unit/test_0000_bootstrap_svc.js => toolkit/mozapps/update/tests/unit_service_updater/bootstrapSvc.js
rename : toolkit/mozapps/update/test_svc/unit/test_0203_app_launch_apply_update_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marAppApplyUpdateAppBinInUseStageSuccessSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0201_app_launch_apply_update_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marAppApplyUpdateStageSuccessSvc.js
rename : toolkit/mozapps/update/test_svc/unit/test_0200_app_launch_apply_update_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marAppApplyUpdateSuccessSvc.js
rename : toolkit/mozapps/update/test_svc/unit/test_0162_appInUse_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marAppInUseFallbackStageFailureCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0161_appInUse_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marAppInUseStageFailureCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0160_appInUse_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marAppInUseSuccessCompleteSvc.js
rename : toolkit/mozapps/update/test_svc/unit/test_0152_appBinReplaced_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marCallbackAppStageSuccessCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0153_appBinPatched_xp_win_partial_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marCallbackAppStageSuccessPartialSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0150_appBinReplaced_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marCallbackAppSuccessCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0151_appBinPatched_xp_win_partial_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marCallbackAppSuccessPartialSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0202_app_launch_apply_update_dirlocked_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marDirLockedStageFailureSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0112_general_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFailurePartialSvc.js
rename : toolkit/mozapps/update/test_svc/unit/test_0188_fileInUse_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileInUseFallbackStageFailureCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0189_fileInUse_xp_win_partial_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileInUseFallbackStageFailurePartialSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0184_fileInUse_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileInUseStageSuccessCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0185_fileInUse_xp_win_partial_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileInUseStageSuccessPartialSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0180_fileInUse_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileInUseSuccessCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0181_fileInUse_xp_win_partial_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileInUseSuccessPartialSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0170_fileLocked_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileLockedFailureCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0171_fileLocked_xp_win_partial_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileLockedFailurePartialSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0174_fileLocked_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileLockedFallbackStageFailureCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0175_fileLocked_xp_win_partial_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileLockedFallbackStageFailurePartialSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0172_fileLocked_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileLockedStageFailureCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0173_fileLocked_xp_win_partial_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marFileLockedStageFailurePartialSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0190_rmrfdirFileInUse_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marRMRFDirFileInUseFallbackStageFailureCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0191_rmrfdirFileInUse_xp_win_partial_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marRMRFDirFileInUseFallbackStageFailurePartialSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0186_rmrfdirFileInUse_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marRMRFDirFileInUseStageSuccessCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0187_rmrfdirFileInUse_xp_win_partial_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marRMRFDirFileInUseStageSuccessPartialSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0182_rmrfdirFileInUse_xp_win_complete_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marRMRFDirFileInUseSuccessCompleteSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0183_rmrfdirFileInUse_xp_win_partial_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marRMRFDirFileInUseSuccessPartialSvc_win.js
rename : toolkit/mozapps/update/test_svc/unit/test_0115_general_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marStageFailurePartialSvc.js
rename : toolkit/mozapps/update/test_svc/unit/test_0113_general_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marStageSuccessCompleteSvc.js
rename : toolkit/mozapps/update/test_svc/unit/test_0114_general_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marStageSuccessPartialSvc.js
rename : toolkit/mozapps/update/test_svc/unit/test_0110_general_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marSuccessCompleteSvc.js
rename : toolkit/mozapps/update/test_svc/unit/test_0111_general_svc.js => toolkit/mozapps/update/tests/unit_service_updater/marSuccessPartialSvc.js
rename : toolkit/mozapps/update/test_svc/unit/xpcshell.ini => toolkit/mozapps/update/tests/unit_service_updater/xpcshell.ini
rename : toolkit/mozapps/update/test_timermanager/unit/test_0010_timermanager.js => toolkit/mozapps/update/tests/unit_timermanager/consumerNotifications.js
rename : toolkit/mozapps/update/test_timermanager/unit/xpcshell.ini => toolkit/mozapps/update/tests/unit_timermanager/xpcshell.ini
2013-10-25 18:37:29 -07:00
Dave Hunt
47d4ff8572
Bug 929920 - Bump marionette_client version to 0.6.1. r=mdas
2013-10-23 15:02:21 -07:00
Andrew Halberstadt
4a3fdaa647
Bug 930025 - b2g unittests need to check for crashes in more places, r=jgriffin
2013-10-23 14:45:48 -04:00
Jonathan Griffin
d5a2769d30
Bug 927606 - Need to save the duration of individual test methods, r=mdas
2013-10-21 17:07:54 -07:00
Jonathan Griffin
c901b0f850
Bug 928842 - Fix xml-report generation, r=davehunt
2013-10-21 15:53:42 -07:00
Jonathan Griffin
fa8dda686a
Bug 929121 - Don't pass a null bin parameter, r=ahal, DONTBUILD because NPOTB
2013-10-21 14:26:40 -07:00
Malini Das
c50d21f0cb
Bug 909129 - stop leaking imported scripts and don't import duplicates, r=jgriffin
2013-10-08 16:11:45 -04:00
Andrew Halberstadt
35558e8e7d
Bug 927568 - fix misplaced null check in marionette-server.js, r=mdas
2013-10-21 10:32:48 -04:00
Jonathan Griffin
a97446193e
Bug 758835 - Add ability to mark tests as expected failures in the manifest, r=dburns
2013-10-17 11:56:45 -07:00
Malini Das
c5ddc26d47
Bug 927592 - add modal dialog handling when document is ready, and only in B2G, r=jgriffin
2013-10-17 11:25:11 -04:00
Vicamo Yang
7eb51e00fa
Bug 927432: fix 'finish() not called' in chrome js Marionette test cases. r=jgriffin
2013-10-17 10:26:27 +08:00
Carsten "Tomcat" Book
0c436cef7f
merge fx-team to mozilla-central
2013-10-16 13:03:50 +02:00
Wes Kocher
6667469963
Merge m-c to fx-team
2013-10-15 20:32:13 -07:00
Blair McBride
f44c1d0d2f
Bug 451283 - Move log4moz.js to Toolkit as Log.jsm. r=gps,Mossop
...
--HG--
rename : services/common/log4moz.js => toolkit/modules/Log.jsm
rename : services/common/tests/unit/test_log4moz.js => toolkit/modules/tests/xpcshell/test_Log.js
2013-08-26 11:55:58 -07:00
Tim Taubert
0638db8048
Bug 923607 - Suppress safe-mode dialog when starting in safe-mode; r=automatedtester
2013-10-15 11:20:35 -07:00
Jonathan Griffin
295f540619
Bug 925469 - Import errors in __init__.py, r=dburns
2013-10-14 12:53:24 -07:00
Jonathan Griffin
53c354275d
Bug 926703 - Remove venv_mochitest.sh - use mach instead, r=mdas, DONTBUILD NPOTB
2013-10-15 09:29:21 -07:00
David Burns
f1fd1112ad
Bug 759485: Add submit to HTMLElement on Marionette to submit forms without click() or send_keys(); r=mdas
2013-10-15 15:40:48 +01:00
David Burns
08f438cf5a
Bug 819050 - Marionette response containing JSON object with element details instead of raw ID; r=mdas
2013-10-15 11:05:21 +01:00
David Burns
72bf67a787
Bug 807282 - Update marionette command/response to match that of the WebDriver spec; r=mdas
2013-10-01 16:13:04 +01:00
Jonathan Griffin
d5c096f822
Bug 926693 - Add B2G support to marionette's mach command, r=ahal
2013-10-15 12:54:21 -07:00
Ed Morley
4a19c5bcee
Backed out changeset 8ecb68f17618 (bug 909129) for causing bug 924959
2013-10-09 17:13:22 +01:00
Mathieu Bultel
0d1e14ab84
Bug 879900 - Use moztest in Marionette, r=jgriffin
2013-08-08 23:14:50 +02:00
Malini Das
c2476960ed
Bug 909129 - fix leaking imported scripts from marionette, r=dburns
2013-10-08 16:11:45 -04:00
Wes Kocher
72f7f923d1
Backed out changeset 961256d21b8e (bug 909129) for multiple Mnw failures
2013-09-27 10:54:29 -07:00
Rob Wood
03f9a1a606
Bug 902179 - Add marionette unit test for oop get active frame, update manifest; r=jgriffin
2013-09-26 13:30:51 -04:00
Malini Das
e0680e60ae
Bug 909129 - fix Marionette imported scripts leak, add clearImportedScripts call, r=dburns
2013-09-27 11:27:28 -04:00
David Burns
8bcf67e484
Bug 832045 - get_attribute test for boolean attributes; r=jgriffin
2013-09-20 21:24:05 +01:00
Ed Morley
02c60435a9
Merge latest green b2g-inbound changeset and mozilla-central
2013-09-20 10:20:58 +01:00
Szu-Yu Chen [:aknow]
5c61287b3b
Bug 805838 - Add MARIONETTE_HEAD_JS support. r=jgriffin
2013-09-19 08:32:51 -04:00
Jarek 'jarekps' Smiejczak
9988453d27
Bug 821303 - Added switch_to_default_content method to Marionette; r=dburns
2013-09-10 15:18:00 +01:00
Malini Das
c3399c2c75
Bug 918361 - delete the unused test_emulator.py, r=jgriffin
2013-09-19 16:04:04 -04:00
Malini Das
78383d1a72
Bug 779284 - Implement B2G Modal dialog handling to Marionette, r=jgriffin,mdas
2013-09-19 13:35:19 -04:00
Dave Hunt
3fe10ca32f
Bug 811780 - Provide an option for creating a blank SD card image when running against an emulator. r=jgriffin
2013-09-13 00:47:13 -07:00
Malini Das
7c51a64331
Bug 915658 - Add timestamp data to Marionette touch event logging, r=jgriffin
2013-09-13 09:33:41 +02:00
Dave Hunt
bbcd4a0cad
Bug 902679 - Store specified device serial in marionette. r=jgriffin
2013-09-12 12:19:51 +01:00
Ryan VanderMeulen
ce0f027f99
Merge b2g-inbound to m-c.
2013-09-11 20:58:14 -04:00
Szu-Yu Chen [:aknow]
4b0c415905
Bug 914571 - Avoid overwriting the marionette loglines. r=jgriffin
2013-09-11 09:38:55 -04:00
Soumya Deb
f697a6c5ed
Bug 914713 - change default timeout for wait_for_port to 30 seconds, r=mdas
2013-09-11 17:53:58 +02:00
Askeing Yen
7c7d592148
Bug 912890 - [Marionette Client] Add shuffle for tests. r=jgriffin
2013-09-06 15:30:55 +08:00
Fabrice Desré
595ce186af
Bug 894927 - Use xhtml instead of xul for b2g main window. r=ochameau
...
--HG--
rename : b2g/chrome/content/shell.xul => b2g/chrome/content/shell.html
2013-08-28 14:35:34 -07:00
James Lal
2422b9ed6b
Bug 912809 - Use false instead of true in scrollIntoView, r=jgriffin
2013-09-05 10:38:36 -07:00
Dave Hunt
8ce91a3317
Bug 911196 - Bump marionette_client version to 0.5.37. r=jgriffin
2013-09-05 13:27:57 +01:00
Mike Hommey
f1cf3b4238
Bug 912293 - Remove now redundant boilerplate from Makefile.in. r=gps
2013-09-05 09:01:46 +09:00
David Burns
12c0c58961
Bug 912244: Correct screenshot with element highlighting in Marionette; r=jgriffin
2013-09-04 09:05:43 +01:00
Ryan VanderMeulen
f41dc068e8
Backed out changeset 5c25126b9c76 (bug 894927) for causing bug 911751 on a CLOSED TREE.
...
--HG--
rename : b2g/chrome/content/shell.html => b2g/chrome/content/shell.xul
2013-09-03 20:51:30 -04:00
Mike Pennisi
e65e235aaf
Bug 908441 - Convenience methods for interacting with HTML5 "date" and "time" input elements. r=automatedtester
2013-08-29 16:10:20 -04:00
Mihnea Dobrescu-Balaur
e8a3fc0a1b
Bug 904232 - Add inactivity timeout for marionette tests. r=jgriffin
2013-08-28 10:06:03 -07:00
Fabrice Desré
e4df86208c
Bug 894927 - Use xhtml instead of xul for b2g main window. r=ochameau
...
--HG--
rename : b2g/chrome/content/shell.xul => b2g/chrome/content/shell.html
2013-08-28 14:35:34 -07:00
Jonathan Griffin
284ff1a1b5
Bug 779284 - Back out 705d668fb81b for suspected perf regressions, a=test-only
2013-08-25 11:23:19 -07:00
Ed Morley
9dd664ddd9
Bug 907925 - Add reasons to Marionette's wait_for_port() assertions, to make them TBPL compatible; r=jgriffin
...
--HG--
extra : rebase_source : 458c32979708ed5581a992745ff10ba75aee3d7f
2013-08-21 22:13:36 +01:00
William Lachance
3835d30a88
Bug 901635 - Store marionette documentation in-tree, using sphinx;r=mdas
...
This will let us autogenerate documentation on change, and display it on
readthedocs.
2013-08-20 13:59:20 -04:00
David Burns
c6732ba0b0
Bug 901776 - Adding checks to visibility code that makes elements with hidden attribute hidden; r=mdas
2013-08-20 16:47:22 +01:00
David Burns
ae1425f9d3
bug 901781: Correct viewport algorithm for marionette and enable visibility tests; r=mdas
2013-08-07 16:19:59 -07:00
Malini Das
1c5e0ab176
Bug 779284 - Implement Modal dialog handling to Marionette, r=jgriffin
2013-08-16 16:54:41 -04:00
Carsten "Tomcat" Book
89b83199da
merge mozilla-central to b2g-inbound
2013-08-14 15:02:24 +02:00
Szu-Yu Chen [:aknow]
befe552838
Bug 904490 - Extend marionette connection timeout. r=jgriffin
2013-08-14 16:45:12 +08:00
William Lachance
0bfb82e196
Bug 904292 - Clean up marionette pyflakes warnings;r=mdas
2013-08-13 10:24:33 -07:00
Carsten "Tomcat" Book
2e9c4e6c35
merge b2g-inbound to mozilla-central
2013-08-08 13:33:12 +02:00
Jonathan Griffin
a99a69b0dd
Bug 902225 - Enable test_import_script_reuse_window.py. r=dburns
2013-08-06 16:31:34 -07:00
Jonathan Griffin
83aed9b889
Bug 790787 - Enable more unit tests on B2G. r=mdas
2013-08-06 17:34:30 -07:00
Jonathan Griffin
1dea834f8b
Bug 758329 - Enable test_emulator_order.py. r=mdas
2013-08-06 16:03:39 -07:00
Andrew Halberstadt
577e34919d
Bug 887291 - Allow marionette test runner to pass command line arguments onto the application, r=jgriffin
2013-08-07 11:46:25 -04:00
David Burns
bd80db7e0b
Bug 758195 - Add test for implicit waits. r=jgriffin
2012-05-24 10:48:30 -07:00
Ed Morley
d0a6230a88
Merge mozilla-central and b2g-inbound
2013-08-02 13:51:22 +01:00
Jonathan Griffin
c8d0524f9d
Bug 796018 - Add basic frame remote frame switch test. r=mdas
2013-07-31 16:27:14 -07:00
Jonathan Griffin
7bf11f572d
Bug 898074 - Don't send multiple responses to deleteSession, r=dhylands
2013-08-01 18:20:22 -07:00
Jonathan Griffin
561a7c9253
Bug 898074 - Open Marionette's port with a backlog of 0, r=dhylands, on a CLOSED TREE for possible orange fix
2013-08-01 12:50:38 -07:00
Jonathan Griffin
6e5132554e
Bug 900670 - Add threadtime to Marionette's logcat, r=dhylands
2013-08-01 14:54:02 -07:00
Ryan VanderMeulen
734248d603
Merge m-c to inbound.
2013-07-31 16:33:59 -04:00
Jonathan Griffin
4b34391c5e
Bug 899731 - Bump marionette version. r=wlach
2013-07-30 12:52:46 -07:00
Jonathan Griffin
5e5533d8e6
Bug 900080 - Use e.message instead of e in onPacket errors, r=wlach
2013-07-31 10:55:44 -07:00
David Burns
c6280d7203
Bug 837621: update isElementDisplayed atoms with new overflow logic; r=jgriffin
2013-07-29 21:20:50 +01:00
William Lachance
98bb9e6e88
Bug 855327 - Quick followup to improve variable name;r=jgriffin
2013-07-29 13:49:46 -04:00
William Lachance
218dc7ae75
Bug 855327 - Add capability to get currently active frame from marionette;r=jgriffin
2013-07-29 13:46:01 -04:00
Gavin Sharp
9d17728d72
Remove some unnecessary preprocessing, no bug
...
--HG--
extra : rebase_source : 211b3d075040fa0ffdf64782c804f7a55f039149
2013-07-26 16:05:05 -07:00
Jonathan Griffin
7dbf03149b
Bug 897135 - Switch Marionette's log level to Trace, r=wlach
2013-07-23 12:33:07 -07:00
David Burns
5d2ae1edbb
Bug 896043 : Switching off tests as they are not being used and blocking marionette content updates; r=jgriffin
2013-07-22 10:57:56 +01:00
Jonathan Griffin
3ab0cc3efa
Bug 894953 - Don't leak onDOMConentLoaded event handlers, r=mdas
2013-07-17 15:13:09 -07:00
Florin Bogdan Strugariu
bb812d5207
Bug 802742 - Marionette should list all failed tests at the end of the testrun, r=mdas
2013-07-10 13:04:33 +03:00
Florin Bogdan Strugariu
672b4e079d
Bug 845805 - Add a By class to the marionette python bindings; r=dburns
2013-07-04 14:43:54 +03:00
Malini Das
1a907b183b
Bug 823222 - use socket module to check port, r=jgriffin
2013-07-09 10:54:29 -04:00
Jonathan Griffin
0cfc7d2abf
Bug 889637 - Add --es-server arg to Marionette, r=mcote
2013-07-08 12:28:53 -07:00
Jonathan Griffin
22d96b016e
Bug 891139 - Bump marionette to 0.5.35, r=stephend
2013-07-08 19:55:42 -07:00
Mounir Lamouri
3612d22748
Bug 886046 - Add a MockColorPicker module in SpecialPowers. r=ctalbert
2013-07-08 15:11:36 -04:00
David Burns
85465247b5
Bug 887583 - Add more startup prefs to Marionette, r=mdas
2013-05-08 12:32:50 +01:00
David Burns
93342b2a09
Bug 890214 : adding missing import to marionette testrunner; r=dhunt
2013-07-04 13:46:10 +01:00
Dave Hunt
1f1bfa0469
Bug 889469 - Bump marionette_client version to 0.5.34 r=jgriffin
2013-07-03 22:43:48 +01:00
Jonathan Griffin
249a918242
Bug 887841 - Be very careful when deleting a session that may not exist, r=mdas
2013-07-02 10:48:55 -07:00
Dave Hunt
b0fe8ec3ea
Bug 889439 - XML report generation fails when results tuple contains more than two items. r=jgriffin
2013-07-02 18:59:15 +01:00
Ryan VanderMeulen
ca281f1634
Merge birch to inbound.
2013-07-02 10:19:45 -04:00
Mathieu Bultel mat.bultel@gmail.com
fcb7646be6
Bug 888506 - Check that the start_time attribute exists before trying to use it. r=jgriffin
2013-07-01 12:37:21 +02:00
Jonathan Griffin
bbcd8a7090
Bug 886579 - Better errors for JS tests, r=mdas
2013-07-01 15:47:37 -07:00
Jonathan Griffin
bbdf907ba9
Bug 888474 - Bump Marionette version, a=test-only, a=test-only
2013-06-28 14:34:20 -07:00
Jonathan Griffin
5457563e70
Bug 885940 - Move common code inato marionette-common.js, r=mdas
...
--HG--
rename : testing/marionette/marionette-log-obj.js => testing/marionette/marionette-common.js
2013-06-28 14:07:55 -07:00
Mathieu Bultel mat.bultel@gmail.com
6fa2ae71eb
Bug 886741 - Fix support for expectedFailure and skip, r=jgriffin
2013-06-26 17:59:10 +02:00
Malini Das
a473dd2a1c
Bug 883299 - Log coordinates for events that Marionette initiates, r=jgriffin
2013-06-27 13:48:12 -04:00
Jonathan Griffin
94c2f63876
Bug 888303 - Don't send debug messages for touch events to the log, a=test-only
2013-07-01 10:54:39 -07:00
Jim Chen
1289df4faa
Bug 864040 - Move synthesizeSelectionSet to EventUtils.js and let sendString accept newlines; r=jmaher
2013-06-26 17:28:21 -04:00
Jonathan Griffin
6f3e573d8d
Bug 874599 - Only call _deleteSession during cleanTest, r=mdas
2013-06-24 14:43:13 -07:00
Ehsan Akhgari
ec70c90a69
Merge mozilla-central to mozilla-inbound
2013-06-22 08:42:15 -04:00
Chris Manchester
7dcbea35bc
Bug 662247 - Replace synchronous appenders with async appenders using OS.File; r=gps
2013-06-20 14:00:14 -07:00
Jonathan Griffin
244e41ddaa
Bug 885482 - Bump Marionette version, r=davehunt
2013-06-20 16:07:08 -07:00
Joey Armstrong
90f5105a37
bug 880246: move EXTRA_PP_COMPONENTS to mozbuild (cleanup). r=mshal
2013-06-20 15:59:59 -04:00
Ed Morley
32d0858db7
Merge latest green birch changeset and mozilla-central
2013-06-20 09:01:19 +01:00
Jonathan Griffin
4b534c81b3
Bug 883281 - Add ability to skip tests based on device, r=davehunt
2013-06-19 17:35:20 -07:00
Mathieu Bultel
c9d05fbeb9
Bug 874599 - Move duration into _deleteSession function. r=jgriffin
2013-06-19 09:31:11 +02:00
Joey Armstrong
ad3592a2c7
bug 880246: move EXTRA_PP_COMPONENTS to mozbuild (file batch #1 ) r=mshal
2013-06-14 14:07:19 -04:00
Dave Hunt
19d1166c69
Bug 879683 - Allow MarionetteTestResult and MarionetteTextTestRunner to be subclassed. r=jgriffin
2013-06-14 13:21:29 -04:00
Jonathan Griffin
e80897df24
Bug 881601 - Don't close the listener if it was never opened, r=wlach
2013-06-13 10:04:48 -07:00
William Lachance
2dacbf3da8
Bug 797529 - Remove dependence on debugger server, r=jgriffin
2013-05-14 16:54:07 -04:00
David Burns
e4f4961edd
Bug 870445 - Add -marionette command-line arg to Firefox, r=mdas
2013-05-13 13:43:15 +01:00
Jonathan Griffin
387f969ba4
Backout 36b68f9e4e04 for bustage (Bug 797529)
2013-06-06 17:26:39 -07:00
William Lachance
b18089d95c
Bug 797529 - Remove dependence on debugger server, r=jgriffin
...
--HG--
rename : testing/marionette/marionette-actors.js => testing/marionette/marionette-server.js
2013-05-14 16:54:07 -04:00
Malini Das
0f3e92413e
Bug 880280 - gestures should be part of the marionette-client, r=davehunt
2013-06-06 13:11:43 -04:00
Malini Das
82e8daa1f3
Bug 823222 - We should check the host/port before running tests, r=mdas
2013-06-06 11:10:15 -04:00
Malini Das
70f8f88e39
Bug 880034 - Typo in --timeouts help message, r=jgriffin
2013-06-06 10:15:29 -04:00
Mathieu Bultel
a4905e3e69
Bug 763483 - navigate() does not wait for DOM readystate == complete, r=mdas
2013-06-05 08:59:05 +02:00
Jonathan Griffin
86d3f9296b
Bug 879492 - Add a B2GBuild class to Marionette, r=aki
2013-06-04 16:48:50 -07:00
Malini Das
ab3d041aa6
Bug 878910 - fix touchlists for 'touchend' and 'touchcancel', r=jgriffin
2013-06-04 13:47:53 -04:00
Jonathan Griffin
bbc7f8908d
Bug 873538 - Pass -marionette when launching Firefox, r=dburns
2013-06-04 10:01:46 -07:00
Malini Das
2d5a7307cf
Bug 878936 - remove test_marionette_touch.py from test manifest, r=jgriffin
2013-06-03 16:09:04 -04:00
William Lachance
92fb70b98a
Bug 878914 - Fix race condition in marionette testrunner;r=jgriffin
2013-06-03 14:54:07 -04:00
Malini Das
8cfc0ac94a
Bug 845849 - Remove MarionetteTouchMixin, r=jgriffin
2013-06-03 14:40:48 -04:00
Jonathan Griffin
b9a894b6df
Bug 873591 - Make better errors for execute_script failures, r=mdas
2013-06-21 17:13:35 -07:00
Malini Das
5fb0b12e36
Bug 876835 - fix python 2.6 failures due to assertIn, r=jgriffin
2013-05-28 18:54:42 -04:00
David Burns
b0b966b2cd
Bug 872561 - Loosening the elementInView and also checking the centre of the element is in view; r=mdas
2013-05-28 12:30:56 +01:00
Malini Das
a62ee3c399
Bug 857582 - send mouse events if we can't send touch events, r=jgriffin
2013-05-27 13:12:13 -04:00
Mathieu Bultel
6c1c5c8efb
Bug 773159 - Add support for returning the title and type of the active chrome window, r=mdas
2013-05-24 22:14:29 +02:00
Mathieu Bultel
4fbbd462b8
Bug 794687 - Add --timeout argument to Marionette, r=mdas
2013-05-23 00:22:22 +02:00
Jonathan Griffin
401d261e2b
Bug 838607 - Re-enable test_click.py, a=test-only
2013-05-20 11:01:10 -07:00
Jonathan Griffin
f80bc8db75
Bug 869536 - Make Marionette use its own tab on Firefox, r=mdas
2013-05-17 11:43:52 -07:00
Jonathan Griffin
d61254ad81
Bug 872146 - Remove obsolete files. r=mdas
2013-05-14 11:35:12 -07:00
Vicamo Yang
fb08b2654a
Bug 871440: bypass offline for both B2G emulator ARM & x86. r=jgriffin
2013-05-14 10:26:32 +08:00
David Burns
378800cf8d
Bug 869488: add mechanism for getting css rule attached to element from Marionette; r=mdas
2013-05-07 14:38:21 -07:00
Gregory Szorc
408aacec08
Bug 856392 - Categorize mach commands; r=jhammel
...
DONTBUILD (NPOTB)
2013-05-08 17:56:30 -07:00
Ryan VanderMeulen
210edab1cd
Merge inbound to m-c.
2013-05-07 22:10:19 -04:00
Colby Russell
3679b4505b
Bug 861495 - Transplant getOuterWindowWithId from nsIDOMWindowUtils to a window-related service: marionette-actors.js. r=jgriffin
2013-05-07 12:34:21 -04:00
Jonathan Griffin
a4f203cab3
Bug 838607 - Disable firstrun page during Marionette tests, r=mdas
2013-05-07 10:07:28 -07:00
Gregory Szorc
5d590258b9
Bug 799308 - Mach command for running Marionette, r=gps
2013-04-19 05:19:54 -07:00
Ed Morley
cabb89f9ab
Merge mozilla-central and birch
2013-05-03 13:35:02 +01:00
Jonathan Griffin
adc12cd2f2
Bug 867548 - Disable updates when launching emulator, r=ahal
2013-05-02 16:16:44 -07:00
Jonathan Griffin
2bf30b8a01
Bug 864296 - Check for detached elements, r=mdas
2013-05-02 16:11:59 -07:00
Malini Das
63068b4dcc
Bug 867812 - get rid of skip, r=jgriffin
2013-05-01 19:52:40 -04:00
Yoshi Huang
1aaf0f0607
Bug 847741 - Part 4: Remove getSimContacts impl. r=gwagner
2013-03-06 10:45:07 +08:00
Jonathan Griffin
01ce1d5ab3
Bug 867220 - Make setSearchTimeout behave globally, r=mdas
2013-05-01 10:16:49 -07:00
Malini Das
8dca226d50
Bug 867573 - fix broken MarionetteTouchMixin, add test, r=dburns
2013-05-01 11:41:57 -04:00
Yiming Yang
a6bceec29c
Bug 858834 - deprecate press/release/double_tap/cancel_touch, rename single_tap to tap, r=mdas
2013-04-26 15:18:55 -07:00
Jonathan Griffin
746d718b5d
Bug 866342 - Use try/catch around weakref.get(), r=mdas
2013-04-30 11:22:03 -07:00
Jonathan Griffin
48aba3542c
Bug 865859 - Update mozbase deps, r=ahal
2013-04-30 10:01:14 -07:00
Jonathan Griffin
1e2ba240dc
Bug 865867 - Remove unused perf code from Marionette, r=mdas
2013-04-29 09:38:54 -07:00
Yiming Yang
f135c1a962
Bug 845925 - Add scroll/pinch actions using touch action chains to the python touch layer, r=mdas
2013-04-26 11:14:50 -07:00
Dave Hunt
e651f7c636
Bug 866111 - Bump marionette_client version to 0.5.25. r=mdas
2013-04-26 16:16:33 +01:00
Dave Hunt
0797678ed6
Bug 842633 - Allow subclasses of MarionetteTestRunner to add their own command line options. r=jgriffin
2013-04-25 09:04:21 +01:00
Dave Hunt
d572cd5e8f
Bug 863893 - Bump marionette_client version to 0.5.24. r=mdas
2013-04-19 23:03:03 +01:00
Andrew Halberstadt
20e89e3c11
Bug 863377 - Marionette socket exceptions prevented from propagating, r=jgriffin
2013-04-19 14:20:10 -04:00
Yiming Yang
12fd184abc
Bug 858563 - Add 'long_press' to Action chains, r=mdas
2013-04-15 13:19:22 -07:00
Yiming Yang
cca8ce520a
Bug 850819 - Send touch/mouse/click events in action chains, r=mdas
2013-04-10 16:55:43 -07:00
Jonathan Griffin
cb65ed9336
Bug 863185 - Define variable in order to use it, r=dburns
2013-04-18 03:04:13 -07:00
Malini Das
b89c737472
Bug 860849 - Fix 'Illegal Value' error in marionette, r=jgriffin
2013-04-17 12:06:39 -04:00