| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 
 | %%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2010. 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.
%%
%% %CopyrightEnd%
%%
-module(edlin_expand_SUITE).
-export([all/1]).
-export([normal/1, quoted_fun/1, quoted_module/1, quoted_both/1]).
-export([init_per_testcase/2, fin_per_testcase/2]).
-include("test_server.hrl").
% Default timetrap timeout (set in init_per_testcase).
-define(default_timeout, ?t:minutes(1)).
init_per_testcase(_Case, Config) ->
    ?line Dog = ?t:timetrap(?default_timeout),
    [{watchdog, Dog} | Config].
fin_per_testcase(_Case, Config) ->
    Dog = ?config(watchdog, Config),
    test_server:timetrap_cancel(Dog),
    ok.
all(doc) ->
    ["Test cases for edlin_expand."];
all(suite) ->
    [normal, quoted_fun, quoted_module, quoted_both].
normal(doc) ->
    [""];
normal(suite) ->
    [];
normal(Config) when is_list(Config) ->
    ?line {module,expand_test} = c:l(expand_test),
    % These tests might fail if another module with the prefix "expand_" happens
    % to also be loaded.
    ?line {yes, "test:", []} = edlin_expand:expand(lists:reverse("expand_")),
    ?line {no, [], []} = edlin_expand:expand(lists:reverse("expandXX_")),
    ?line {no,[],
	   [{"a_fun_name",1},
	    {"a_less_fun_name",1},
	    {"b_comes_after_a",1},
	    {"module_info",0},
	    {"module_info",1}]} = edlin_expand:expand(lists:reverse("expand_test:")),
    ?line {yes,[],[{"a_fun_name",1},
		   {"a_less_fun_name",1}]} = edlin_expand:expand(
					       lists:reverse("expand_test:a_")),
    ok.
quoted_fun(doc) ->
    ["Normal module name, some function names using quoted atoms"];
quoted_fun(suite) ->
    [];
quoted_fun(Config) when is_list(Config) ->
    ?line {module,expand_test} = c:l(expand_test),
    ?line {module,expand_test1} = c:l(expand_test1),
    %% should be no colon after test this time
    ?line {yes, "test", []} = edlin_expand:expand(lists:reverse("expand_")),
    ?line {no, [], []} = edlin_expand:expand(lists:reverse("expandXX_")),
    ?line {no,[],[{"'#weird-fun-name'",0},
		  {"'Quoted_fun_name'",0},
		  {"'Quoted_fun_too'",0},
		  {"a_fun_name",1},
		  {"a_less_fun_name",1},
		  {"b_comes_after_a",1},
		  {"module_info",0},
		  {"module_info",1}]} = edlin_expand:expand(
					  lists:reverse("expand_test1:")),
    ?line {yes,"_",[]} = edlin_expand:expand(
			   lists:reverse("expand_test1:a")),
    ?line {yes,[],[{"a_fun_name",1},
		   {"a_less_fun_name",1}]} = edlin_expand:expand(
					       lists:reverse("expand_test1:a_")),
    ?line {yes,[],
	   [{"'#weird-fun-name'",0},
	    {"'Quoted_fun_name'",0},
	    {"'Quoted_fun_too'",0}]} = edlin_expand:expand(
					 lists:reverse("expand_test1:'")),
    ?line {yes,"uoted_fun_",[]} = edlin_expand:expand(
				    lists:reverse("expand_test1:'Q")),
    ?line {yes,[],
	   [{"'Quoted_fun_name'",0},
	    {"'Quoted_fun_too'",0}]} = edlin_expand:expand(
					 lists:reverse("expand_test1:'Quoted_fun_")),
    ?line {yes,"weird-fun-name'(",[]} = edlin_expand:expand(
					  lists:reverse("expand_test1:'#")),
    ok.
quoted_module(doc) ->
    [""];
quoted_module(suite) ->
    [];
quoted_module(Config) when is_list(Config) ->
    ?line {module,'ExpandTestCaps'} = c:l('ExpandTestCaps'),
    ?line {yes, "Caps':", []} = edlin_expand:expand(lists:reverse("'ExpandTest")),
    ?line {no,[],
	   [{"a_fun_name",1},
	    {"a_less_fun_name",1},
	    {"b_comes_after_a",1},
	    {"module_info",0},
	    {"module_info",1}]} = edlin_expand:expand(lists:reverse("'ExpandTestCaps':")),
    ?line {yes,[],[{"a_fun_name",1},
		   {"a_less_fun_name",1}]} = edlin_expand:expand(
					       lists:reverse("'ExpandTestCaps':a_")),
    ok.
quoted_both(suite) ->
    [];
quoted_both(Config) when is_list(Config) ->
    ?line {module,'ExpandTestCaps'} = c:l('ExpandTestCaps'),
    ?line {module,'ExpandTestCaps1'} = c:l('ExpandTestCaps1'),
    %% should be no colon (or quote) after test this time
    ?line {yes, "Caps", []} = edlin_expand:expand(lists:reverse("'ExpandTest")),
    ?line {no,[],[{"'#weird-fun-name'",0},
		  {"'Quoted_fun_name'",0},
		  {"'Quoted_fun_too'",0},
		  {"a_fun_name",1},
		  {"a_less_fun_name",1},
		  {"b_comes_after_a",1},
		  {"module_info",0},
		  {"module_info",1}]} = edlin_expand:expand(
					  lists:reverse("'ExpandTestCaps1':")),
    ?line {yes,"_",[]} = edlin_expand:expand(
			   lists:reverse("'ExpandTestCaps1':a")),
    ?line {yes,[],[{"a_fun_name",1},
		   {"a_less_fun_name",1}]} = edlin_expand:expand(
					       lists:reverse("'ExpandTestCaps1':a_")),
    ?line {yes,[],
	   [{"'#weird-fun-name'",0},
	    {"'Quoted_fun_name'",0},
	    {"'Quoted_fun_too'",0}]} = edlin_expand:expand(
					 lists:reverse("'ExpandTestCaps1':'")),
    ?line {yes,"uoted_fun_",[]} = edlin_expand:expand(
				    lists:reverse("'ExpandTestCaps1':'Q")),
    ?line {yes,[],
	   [{"'Quoted_fun_name'",0},
	    {"'Quoted_fun_too'",0}]} = edlin_expand:expand(
					 lists:reverse("'ExpandTestCaps1':'Quoted_fun_")),
    ?line {yes,"weird-fun-name'(",[]} = edlin_expand:expand(
					  lists:reverse("'ExpandTestCaps1':'#")),
    ok.
 |