2 % Copyright 2008 Grégory Burri
4 % This file is part of Euphorik.
6 % Euphorik is free software: you can redistribute it and/or modify
7 % it under the terms of the GNU General Public License as published by
8 % the Free Software Foundation, either version 3 of the License, or
9 % (at your option) any later version.
11 % Euphorik is distributed in the hope that it will be useful,
12 % but WITHOUT ANY WARRANTY; without even the implied warranty of
13 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 % GNU General Public License for more details.
16 % You should have received a copy of the GNU General Public License
17 % along with Euphorik. If not, see <http://www.gnu.org/licenses/>.
19 % Module de test de euphorik.
20 % Crée un certain nombre d'utilisateur et post des messages aléatoire.
23 -module(euphorik_test
).
24 -export([start
/2, stop
/1]).
25 -include("../include/euphorik_bd.hrl").
28 % N est le nombre d'utilisateur
29 % M est le nombre de message que chaque utilisateur va poster
38 random:seed(A1
, A2
, A3
),
47 lists:foreach(fun(Pid
) -> exit(Pid
, kill
) end, Pids
).
50 % Crée N user avec des noms aléatoires et renvoie la liste des id.
53 creer_users(0, Ids
) -> lists:map(fun(#user
{id
= Id
}) -> Id
end, Ids
);
54 creer_users(N
, Ids
) ->
55 creer_users(N
- 1, [euphorik_bd:nouveau_user(mot_rand(random:uniform(4) + 4), "", "") | Ids
]).
58 % crée un message aléatoire et le renvoie
60 lists:flatten(message_rand(random:uniform(10), [])).
61 message_rand(0, Mots
) -> Mots
;
62 message_rand(N
, Mots
) ->
63 message_rand(N
- 1, [mot_rand(random:uniform(2) + 5), $
| Mots
]).
66 % Renvoie une succession de lettre aléatoire
69 mot_rand(0, Mot
) -> Mot
;
71 mot_rand(L
- 1, [random:uniform($z
- $a
+ 1) + $a
- 1 | Mot
]).
74 % Tire au hasard de 0 à 3 messages sur les 10 derniers postés, renvoie une liste de int()
81 Messages
= lists:map(fun(#minichat
{id
= Id
}) -> Id
end, euphorik_bd:messages(30)),
84 R
> 0.5 andalso R
=< 0.8 ->
85 tire_element_rand(1, Messages
);
86 R
> 0.8 andalso R
=< 0.95 ->
87 tire_element_rand(2, Messages
);
89 tire_element_rand(3, Messages
)
93 % tire N element distinct parmis la liste L proposée
94 tire_element_rand(N
, L
) when N
=< length(L
) ->
95 tire_element_rand(N
, L
, []).
96 tire_element_rand(0, _
, Elements
) -> Elements
;
97 tire_element_rand(N
, L
, Elements
) ->
98 E
= lists:nth(random:uniform(length(L
)), L
),
99 E_se_trouve_dans_Elements
= lists:any(fun(E2
) -> E2
=:= E
end, Elements
),
100 if E_se_trouve_dans_Elements
-> % si E a déjà été tiré on recommence sans rien changer
101 tire_element_rand(N
, L
, Elements
);
103 tire_element_rand(N
-1, L
, [E
| Elements
])
107 io:format("~p a fini~n", [User_id
]);
109 % attend un temp aléatoire compris entre 1 sec et 5 sec
110 timer:sleep(1000 * random:uniform(5)),
111 % poste un message aléatoire par une personne aléatoire répondant à des messages aléatoires
112 {Message
, Repond_a
} = {message_rand(), messages_id_rand()},
113 io:format("~p poste ~p et repond a ~w~n", [User_id
, Message
, Repond_a
]),
114 euphorik_bd:nouveau_message(Message
, User_id
, Repond_a
),
115 loop(User_id
, M
- 1).