aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/doc
diff options
context:
space:
mode:
authorAndrey Pampukha <[email protected]>2010-04-19 17:28:07 +0200
committerRaimo Niskanen <[email protected]>2010-06-09 16:19:18 +0200
commit1327bd8956b2d0f6b5a9201ce9ecf361f94733aa (patch)
tree9fa7463d786cfab1c12343e8b5fac829e7e1e0c1 /lib/common_test/doc
parentebcab814cabc74407f48aba1b41327df80586fcd (diff)
downloadotp-1327bd8956b2d0f6b5a9201ce9ecf361f94733aa.tar.gz
otp-1327bd8956b2d0f6b5a9201ce9ecf361f94733aa.tar.bz2
otp-1327bd8956b2d0f6b5a9201ce9ecf361f94733aa.zip
Move 'node_start' and 'eval' terms into new 'init' term
node_start+eval -> init(node_start, eval) Also include some documentation updates.
Diffstat (limited to 'lib/common_test/doc')
-rw-r--r--lib/common_test/doc/src/ct_master_chapter.xml49
-rw-r--r--lib/common_test/doc/src/run_test_chapter.xml16
2 files changed, 38 insertions, 27 deletions
diff --git a/lib/common_test/doc/src/ct_master_chapter.xml b/lib/common_test/doc/src/ct_master_chapter.xml
index 1622b5b29c..4ab891edee 100644
--- a/lib/common_test/doc/src/ct_master_chapter.xml
+++ b/lib/common_test/doc/src/ct_master_chapter.xml
@@ -102,7 +102,7 @@
<p><c>ct_master:abort()</c> (stop all) or <c>ct_master:abort(Nodes)</c></p>
<p>For detailed information about the <c>ct_master</c> API, please see the
- manual page for this module.</p>
+ <seealso marker="ct_master">manual page</seealso> for this module.</p>
</section>
<section>
<title>Test Specifications</title>
@@ -197,32 +197,49 @@
<section>
<title>Automatic startup of the test target nodes</title>
<marker id="ct_slave"></marker>
- <p>Is is possible to start nodes acting like a test targets automatically
- using a new term in the test specification, <c>node_start</c>:</p>
+ <p>Is is possible to perform initial actions on test target nodes
+ automatically using a new term in the test specification, <c>init</c>.</p>
+ <p>Currently, two sub-terms are supported, <c>node_start</c> and <c>eval</c>.</p>
<pre>
{node, node1, node1@host1}.
{node, node2, node1@host2}.
{node, node3, node2@host2}.
- {node_start, node1, [{callback_module, my_slave_callback}]}.
- {node_start, [node2, node3], [{username, "ct_user"}, {password, "ct_password"}]}.
+ {node, node4, node1@host3}.
+ {init, node1, [{node_start, [{callback_module, my_slave_callback}]}]}.
+ {init, [node2, node3], {node_start, [{username, "ct_user"}, {password, "ct_password"}]}}.
+ {init, node4, {eval, {module, function, []}}}.
</pre>
<p>This test specification declares that <c>node1@host1</c> is to be started using
user's callback <c>my_slave_callback</c> with no parameters, and nodes <c>node1@host2</c> and
<c>node2@host2</c> will be started with the default callback module <c>ct_slave</c>,
- using the given user name and password to log into remote host <c>host2</c>.</p>
- <p>Default <seealso marker="ct_slave">ct_slave</seealso> callback module delivered with the Common Test has the following features:
+ using the given user name and password to log into remote host <c>host2</c>.
+ Also, there will be function module:function/0 evaluated on the
+ <c>node1@host3</c>, and result of this call will be printed to the log.</p>
+ <p>Default <seealso marker="ct_slave">ct_slave</seealso> callback module
+ delivered with the Common Test has the following features:
<list>
- <item>Starting the Erlang nodes or local or remote hosts (ssh is used for remote ones);</item>
- <item>Ability to start Erlang emulator with the additional flags (any flags supported by <c>erl</c> are supported);</item>
- <item>Supervision of the node being start using internal callback functions. Used to prevent hanging of started nodes. Configurable;</item>
- <item>Monitoring of the master node by the slaves. Slave node may be stopped in case of master node termination. Configurable;</item>
- <item>Execution of the user's functions after slave node is started. Functions can be given as a list of {Module, Function, Arguments} tuples.</item>
+ <item>Starting the Erlang nodes or local or remote hosts
+ (ssh is used for remote ones);
+ </item>
+ <item>Ability to start Erlang emulator with the additional flags
+ (any flags supported by <c>erl</c> are supported);
+ </item>
+ <item>Supervision of the node being start using internal callback
+ functions. Used to prevent hanging of started nodes. Configurable;
+ </item>
+ <item>Monitoring of the master node by the slaves. Slave node may be
+ stopped in case of master node termination. Configurable;
+ </item>
+ <item>Execution of the user's functions after slave node is started.
+ Functions can be given as a list of {Module, Function, Arguments} tuples.
+ </item>
</list>
</p>
- <p>If any <c>eval</c> term is specified for a node which has <c>node_start</c> term
- defined for it, the evaluation of the functions will be deferred until the node is started.
- The functions to be evaluated are simply added to the end of the <c>startup_functions</c> list
- (see <seealso marker="ct_slave">ct_slave</seealso> chapter in the Reference Manual).</p>
+ <p>Note that it is possible to specify <c>eval</c> term for the node as well
+ as <c>startup_functions</c> in the <c>node_start</c> options list. In this
+ case first node will be started, then the <c>startup_functions</c> are
+ executed, and finally functions specified with <c>eval</c> will be called.
+ </p>
</section>
</chapter>
diff --git a/lib/common_test/doc/src/run_test_chapter.xml b/lib/common_test/doc/src/run_test_chapter.xml
index f5dc477c6f..44b4077ec4 100644
--- a/lib/common_test/doc/src/run_test_chapter.xml
+++ b/lib/common_test/doc/src/run_test_chapter.xml
@@ -384,8 +384,8 @@
{event_handler, EventHandlers, InitArgs}.
{event_handler, NodeRefs, EventHandlers, InitArgs}.
- {eval, [{Module, Function, Arguments}]}.
- {eval, [NodeAlias], [{Module, Function, Arguments}]}.
+ {init, Options}.
+ {init, [NodeAlias], Options}.
</pre>
<p>Test terms:</p>
<pre>
@@ -461,15 +461,9 @@
<item>Lastly, all suites for systems t3 are to be completely skipped and this
should be explicitly noted in the log files.</item>
</list>
- <p>It is possible to evaluate any function(s) during processing of the test
- specification. This feature may be used e.g. to add some directories to
- the code path, initialise some ETS table etc. New <c>eval</c> terms can be
- used for this purpose.
- If only a list of functions is given, then all functions from the list
- will be consequently applied on the current node. If at least one node
- alias is given, then the functions will be called remotely on all nodes
- specified. Please note that in case when node is defined to be started by
- the CT Master, the evaluation will be deferred.
+ <p>It is possible to specify initialization options for nodes defined in the
+ test specification. Currently, there are options to start the node and/or to
+ evaluate any function on the node.
See the <seealso marker="ct_master_chapter#ct_slave">Automatic startup of
the test target nodes</seealso> chapter for details.</p>
<p>It is possible for the user to provide a test specification that