%% %% 2003-2007 %% Ericsson AB, All Rights Reserved %% %% %% ``The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in %% compliance with the License. You should have received a copy of the %% Erlang Public License along with this software. If not, it can be %% retrieved online at http://www.erlang.org/. %% %% Software distributed under the License is distributed on an "AS IS" %% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See %% the License for the specific language governing rights and limitations %% under the License. %% %% The Initial Developer of the Original Code is Ericsson AB. %% %% %%% @doc Main user interface for the Common Test framework. %%% %%%

This module implements the command line interface for running %%% tests and some basic functions for common test case issues %%% such as configuration and logging.

%%% %%%

Test Suite Support Macros

%%% %%%

The config macro is defined in ct.hrl. This %%% macro should be used to retrieve information from the %%% Config variable sent to all test cases. It is used with two %%% arguments, where the first is the name of the configuration %%% variable you wish to retrieve, and the second is the Config %%% variable supplied to the test case.

%%% %%%

Possible configuration variables include:

%%% %%% @type var_name() = atom(). A variable name which is specified when %%% ct:require/2 is called, %%% e.g. ct:require(mynodename,{node,[telnet]}) %%% %%% @type target_name() = var_name(). The name of a target. %%% %%% @type handle() = ct_gen_conn:handle() | term(). The identity of a %%% specific connection. -module(ct). %% Command line user interface for running tests -export([install/1, run/1, run/2, run/3, run_test/1, run_testspec/1, step/3, start_interactive/0, stop_interactive/0]). %% Test suite API -export([require/1, require/2, get_config/1, get_config/2, log/1, log/2, log/3, print/1, print/2, print/3, pal/1, pal/2, pal/3, fail/1, comment/1, testcases/2, userdata/2, userdata/3]). -export([get_status/0]). -export([get_target_name/1]). -export([parse_table/1, listenv/1]). %%%----------------------------------------------------------------- %%% @spec install(Opts) -> ok | {error,Reason} %%% Opts = [Opt] %%% Opt = {config,ConfigFiles} | {event_handler,Modules} %%% ConfigFiles = [ConfigFile] %%% ConfigFile = string() %%% Modules = [atom()] %%% @doc Install config files and event handlers. %%% %%%

Run this function once before first test.

%%% %%%

Example:
%%% install([{config,["config_node.ctc","config_user.ctc"]}]).

%%% %%%

Note that this function is automatically run by the %%% run_test script.

install(Opts) -> ct_run:install(Opts). %%%----------------------------------------------------------------- %%% @spec run(TestDir,Suite,Cases) -> Result %%% TestDir = string() %%% Suite = atom() %%% Cases = atom() | [atom()] %%% Result = [TestResult] | {error,Reason} %%% %%% @doc Run the given testcase(s). %%% %%%

Requires that ct:install/1 has been run first.

%%% %%%

Suites (*_SUITE.erl) files must be stored in %%% TestDir or TestDir/test. All suites %%% will be compiled when test is run.

run(TestDir,Suite,Cases) -> ct_run:run(TestDir,Suite,Cases). %%%----------------------------------------------------------------- %%% @spec run(TestDir,Suite) -> Result %%% %%% @doc Run all testcases in the given suite. %%% @see run/3. run(TestDir,Suite) -> ct_run:run(TestDir,Suite). %%%----------------------------------------------------------------- %%% @spec run(TestDirs) -> Result %%% TestDirs = TestDir | [TestDir] %%% %%% @doc Run all testcases in all suites in the given directories. %%% @see run/3. run(TestDirs) -> ct_run:run(TestDirs). %%%----------------------------------------------------------------- %%% @spec run_test(Opts) -> Result %%% Opts = [OptTuples] %%% OptTuples = {config,CfgFiles} | {dir,TestDirs} | {suite,Suites} | %%% {testcase,Cases} | {spec,TestSpecs} | {allow_user_terms,Bool} | %%% {logdir,LogDir} | {silent_connections,Conns} | {cover,CoverSpecFile} | %%% {event_handler,EventHandlers} | {repeat,N} | {duration,DurTime} | %%% {until,StopTime} | {force_stop,Bool} %%% CfgFiles = [string()] | string() %%% TestDirs = [string()] | string() %%% Suites = [string()] | string() %%% Cases = [atom()] | atom() %%% TestSpecs = [string()] | string() %%% LogDir = string() %%% EventHandlers = EH | [EH] %%% EH = atom() | {atom(),InitArgs} | {[atom()],InitArgs} %%% InitArgs = [term()] %%% Conns = all | [atom()] %%% CoverSpecFile = string() %%% N = integer() %%% DurTime = string(HHMMSS) %%% StopTime = string(YYMoMoDDHHMMSS) | string(HHMMSS) %%% Result = [TestResult] | {error,Reason} %%% @doc Run tests as specified by the combination of options in Opts. %%% The options are the same as those used with the run_test script. %%% Note that here a TestDir can be used to point out the path to %%% a Suite. Note also that the option testcase %%% corresponds to the -case option in the run_test %%% script. Configuration files specified in Opts will be %%% installed automatically at startup. run_test(Opts) -> ct_run:run_test(Opts). %%%----------------------------------------------------------------- %%% @spec run_testspec(TestSpec) -> Result %%% TestSpec = [term()] %%% @doc Run test specified by TestSpec. The terms are %%% the same as those used in test specification files. run_testspec(TestSpec) -> ct_run:run_testspec(TestSpec). %%%----------------------------------------------------------------- %%% @spec step(TestDir,Suite,Case) -> Result %%% Case = atom() %%% %%% @doc Step through a test case with the debugger. %%% @see run/3 step(TestDir,Suite,Case) -> ct_run:step(TestDir,Suite,Case). %%%----------------------------------------------------------------- %%% @spec start_interactive() -> ok %%% %%% @doc Start CT in interactive mode. %%% %%%

From this mode all test case support functions can be executed %%% directly from the erlang shell. The interactive mode can also be %%% started from the unix command line with run_test -shell %%% [-config File...].

%%% %%%

If any functions using "required config data" (e.g. telnet or %%% ftp functions) are to be called from the erlang shell, config data %%% must first be required with ct:require/2.

%%% %%%

Example:
%%% > ct:require(a,{unix,[telnet]}).
ok
%%% > ct:cmd(a,"ls").
%%% {ok,["ls","file1 ...",...]}

start_interactive() -> ct_util:start(interactive). %%%----------------------------------------------------------------- %%% @spec stop_interactive() -> ok %%% %%% @doc Exit the interactive mode. %%% @see start_interactive/0 stop_interactive() -> ct_util:stop(normal). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%% MISC INTERFACE %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%----------------------------------------------------------------- %%% @spec require(Required) -> ok | {error,Reason} %%% Required = Key | {Key,SubKeys} %%% Key = atom() %%% SubKeys = SubKey | [SubKey] %%% SubKey = atom() %%% %%% @doc Check if the required configuration is available. %%% %%%

Example: require the variable myvar:
%%% ok = ct:require(myvar)

%%% %%%

In this case the config file must at least contain:

%%%
%%% {myvar,Value}.
%%% %%%

Example: require the variable myvar with %%% subvariable sub1:
%%% ok = ct:require({myvar,sub1})

%%% %%%

In this case the config file must at least contain:

%%%
%%% {myvar,[{sub1,Value}]}.
%%% %%% @see require/2 %%% @see get_config/1 %%% @see get_config/2 require(Required) -> ct_util:require(Required). %%%----------------------------------------------------------------- %%% @spec require(Name,Required) -> ok | {error,Reason} %%% Name = atom() %%% Required = Key | {Key,SubKeys} %%% Key = atom() %%% SubKeys = SubKey | [SubKey] %%% SubKey = atom() %%% %%% @doc Check if the required configuration is available, and give it %%% a name. %%% %%%

If the requested data is available, the main entry will be %%% marked as allocated. An allocated element can only be used if the %%% correct name is given. This means that to read the value of the %%% element with get_config/1,2, you need to provide the %%% Name instead of the Key.

%%% %%%

Example: Require one node with a telnet connection and an %%% ftp connection. Name the node a:
ok = %%% ct:require(a,{node,[telnet,ftp]}).
All references %%% to this node must then use the node name. E.g. you can fetch a %%% file over ftp like this:
%%% ok = ct:ftp_get(a,RemoteFile,LocalFile).

%%% %%%

For this to work, the config file must at least contain:

%%%
%%% {node,[{telnet,IpAddr},
%%%        {ftp,IpAddr}]}.
%%% %%% @see require/1 %%% @see get_config/1 %%% @see get_config/2 require(Name,Required) -> ct_util:require(Name,Required). %%%----------------------------------------------------------------- %%% @spec get_config(Required) -> Value %%% @equiv get_config(Required,undefined) get_config(Required) -> ct_util:get_config(Required). %%%----------------------------------------------------------------- %%% @spec get_config(Required,Default) -> Value %%% Required = KeyOrName | {KeyOrName,SubKey} %%% KeyOrName = atom() %%% SubKey = atom() %%% Default = term() %%% Value = term() | Default %%% %%% @doc Get the value of config data. %%% %%%

This function returns the value of the requested config %%% element.

%%% %%%

Example, given the following config file:

%%%
%%% {unix,[{telnet,IpAddr},
%%%        {username,Username},
%%%        {password,Password}]}.
%%%

get_config(unix,Default) -> %%% [{telnet,IpAddr}, %%% {username,Username}, %%% {password,Password}]
%%% get_config({unix,telnet},Default) -> IpAddr
%%% get_config({unix,ftp},Default) -> Default
%%% get_config(unknownkey,Default) -> Default

%%% %%%

If you want to access a config variable which has been given a %%% name by require/2, the name must be used instead of %%% the key when reading the value:

%%% %%%

require(myhost,unix) -> ok
%%% get_config(myhost,Default) -> %%% [{telnet,IpAddr}, %%% {username,Username}, %%% {password,Password}]

%%% %%% @see get_config/1 %%% @see require/1 %%% @see require/2 get_config(Required,Default) -> ct_util:get_config(Required,Default). %%%----------------------------------------------------------------- %%% @spec log(Format) -> ok %%% @equiv log(default,Format,[]) log(Format) -> log(default,Format,[]). %%%----------------------------------------------------------------- %%% @spec log(X1,X2) -> ok %%% X1 = Category | Format %%% X2 = Format | Args %%% @equiv log(Category,Format,Args) log(X1,X2) -> {Category,Format,Args} = if is_atom(X1) -> {X1,X2,[]}; is_list(X1) -> {default,X1,X2} end, log(Category,Format,Args). %%%----------------------------------------------------------------- %%% @spec log(Category,Format,Args) -> ok %%% Category = atom() %%% Format = string() %%% Args = list() %%% %%% @doc Printout from a testcase to the log. %%% %%%

This function is meant for printing stuff directly from a %%% testcase (i.e. not from within the CT framework) in the test %%% log.

%%% %%%

Default Category is default and %%% default Args is [].

log(Category,Format,Args) -> ct_logs:tc_log(Category,Format,Args). %%%----------------------------------------------------------------- %%% @spec print(Format) -> ok %%% @equiv print(default,Format,[]) print(Format) -> print(default,Format,[]). %%%----------------------------------------------------------------- %%% @equiv print(Category,Format,Args) print(X1,X2) -> {Category,Format,Args} = if is_atom(X1) -> {X1,X2,[]}; is_list(X1) -> {default,X1,X2} end, print(Category,Format,Args). %%%----------------------------------------------------------------- %%% @spec print(Category,Format,Args) -> ok %%% Category = atom() %%% Format = string() %%% Args = list() %%% %%% @doc Printout from a testcase to the console. %%% %%%

This function is meant for printing stuff from a testcase on %%% the console.

%%% %%%

Default Category is default and %%% default Args is [].

print(Category,Format,Args) -> ct_logs:tc_print(Category,Format,Args). %%%----------------------------------------------------------------- %%% @spec pal(Format) -> ok %%% @equiv pal(default,Format,[]) pal(Format) -> pal(default,Format,[]). %%%----------------------------------------------------------------- %%% @equiv pal(Category,Format,Args) pal(X1,X2) -> {Category,Format,Args} = if is_atom(X1) -> {X1,X2,[]}; is_list(X1) -> {default,X1,X2} end, pal(Category,Format,Args). %%%----------------------------------------------------------------- %%% @spec pal(Category,Format,Args) -> ok %%% Category = atom() %%% Format = string() %%% Args = list() %%% %%% @doc Print and log from a testcase. %%% %%%

This function is meant for printing stuff from a testcase both %%% in the log and on the console.

%%% %%%

Default Category is default and %%% default Args is [].

pal(Category,Format,Args) -> ct_logs:tc_pal(Category,Format,Args). %%%----------------------------------------------------------------- %%% @spec fail(Reason) -> void() %%% Reason = term() %%% %%% @doc Terminate a test case with the given error %%% Reason. fail(Reason) -> exit({test_case_failed,Reason}). %%%----------------------------------------------------------------- %%% @spec comment(Comment) -> void() %%% Comment = term() %%% %%% @doc Print the given Comment in the comment field of %%% the table on the test suite result page. %%% %%%

If called several times, only the last comment is printed. %%% comment/1 is also overwritten by the return value %%% {comment,Comment} or by the function %%% fail/1 (which prints Reason as a %%% comment).

comment(Comment) when is_list(Comment) -> Formatted = case (catch io_lib:format("~s",[Comment])) of {'EXIT',_} -> % it's a list not a string io_lib:format("~p",[Comment]); String -> String end, send_html_comment(lists:flatten(Formatted)); comment(Comment) -> Formatted = io_lib:format("~p",[Comment]), send_html_comment(lists:flatten(Formatted)). send_html_comment(Comment) -> Html = "" ++ Comment ++ "", ct_util:set_testdata({comment,Html}), test_server:comment(Html). %%%----------------------------------------------------------------- %%% @spec get_target_name(Handle) -> {ok,TargetName} | {error,Reason} %%% Handle = handle() %%% TargetName = target_name() %%% @doc Return the name of the target that the given connection %%% belongs to. get_target_name(Handle) -> ct_util:get_target_name(Handle). %%%----------------------------------------------------------------- %%% @spec parse_table(Data) -> {Heading,Table} %%% Data = [string()] %%% Heading = tuple() %%% Table = [tuple()] %%% %%% @doc Parse the printout from an SQL table and return a list of tuples. %%% %%%

The printout to parse would typically be the result of a %%% select command in SQL. The returned %%% Table is a list of tuples, where each tuple is a row %%% in the table.

%%% %%%

Heading is a tuple of strings representing the %%% headings of each column in the table.

parse_table(Data) -> ct_util:parse_table(Data). %%%----------------------------------------------------------------- %%% @spec listenv(Telnet) -> [Env] %%% Telnet = term() %%% Env = {Key,Value} %%% Key = string() %%% Value = string() %%% %%% @doc Performs the listenv command on the given telnet connection %%% and returns the result as a list of Key-Value pairs. listenv(Telnet) -> ct_util:listenv(Telnet). %%%----------------------------------------------------------------- %%% @spec testcases(TestDir, Suite) -> Testcases | {error,Reason} %%% TestDir = string() %%% Suite = atom() %%% Testcases = list() %%% Reason = term() %%% %%% @doc Returns all testcases in the specified suite. testcases(TestDir, Suite) -> case make_and_load(TestDir, Suite) of E = {error,_} -> E; _ -> case (catch Suite:all()) of {'EXIT',Reason} -> {error,Reason}; TCs -> TCs end end. make_and_load(Dir, Suite) -> case ct_run:make_test_suite(Dir, Suite) of MErr = {error,_} -> MErr; _ -> File = filename:join(Dir, atom_to_list(Suite)), case code:soft_purge(Suite) of true -> code:load_abs(File); false -> % will use loaded {module,Suite} end end. %%%----------------------------------------------------------------- %%% @spec userdata(TestDir, Suite) -> SuiteUserData | {error,Reason} %%% TestDir = string() %%% Suite = atom() %%% SuiteUserData = [term()] %%% Reason = term() %%% %%% @doc Returns any data specified with the tag userdata %%% in the list of tuples returned from Suite:suite/0. userdata(TestDir, Suite) -> case make_and_load(TestDir, Suite) of E = {error,_} -> E; _ -> Info = (catch Suite:suite()), get_userdata(Info, "suite/0") end. get_userdata({'EXIT',{undef,_}}, Spec) -> {error,list_to_atom(Spec ++ " is not defined")}; get_userdata({'EXIT',Reason}, Spec) -> {error,{list_to_atom("error in " ++ Spec),Reason}}; get_userdata(List, _) when is_list(List) -> Fun = fun({userdata,Data}, Acc) -> [Data | Acc]; (_, Acc) -> Acc end, case lists:foldl(Fun, [], List) of Terms -> lists:flatten(lists:reverse(Terms)) end; get_userdata(_BadTerm, Spec) -> {error,list_to_atom(Spec ++ " must return a list")}. %%%----------------------------------------------------------------- %%% @spec userdata(TestDir, Suite, Case) -> TCUserData | {error,Reason} %%% TestDir = string() %%% Suite = atom() %%% Case = atom() %%% TCUserData = [term()] %%% Reason = term() %%% %%% @doc Returns any data specified with the tag userdata %%% in the list of tuples returned from Suite:Case/0. userdata(TestDir, Suite, Case) -> case make_and_load(TestDir, Suite) of E = {error,_} -> E; _ -> Info = (catch apply(Suite, Case, [])), get_userdata(Info, atom_to_list(Case)++"/0") end. %%%----------------------------------------------------------------- %%% @spec get_status() -> TestStatus | {error,Reason} %%% TestDir = term() %%% Reason = term() %%% %%% @doc Returns status of ongoing tests. get_status() -> case get_testdata(curr_tc) of {ok,TestCase} -> case get_testdata(stats) of {ok,{Ok,Failed,Skipped}} -> [{current,TestCase}, {successful,Ok}, {failed,Failed}, {skipped,Skipped}, {total,Ok+Failed+Skipped}]; Err1 -> Err1 end; Err2 -> Err2 end. get_testdata(Key) -> case catch ct_util:get_testdata(Key) of Error = {error,_Reason} -> Error; {'EXIT',_Reason} -> no_tests_running; Data -> {ok,Data} end.