我有一个table
过程,它创建 apid
作为board
其状态的一部分go()
。
我正在测试终止表也会终止董事会。但董事会并没有像预期的那样停止。
我的测试:
kills_board_test() ->
{ok, Table} = table:go(),
{BoardPid, _ ,_ } = s:s(Table, info),
gen_server:stop(Table),
undefined = process_info(BoardPid).
在table.erl
我实施:
handle_call(stop, _From, State = {Board, _, _}) ->
gen_server:stop(Board),
{stop, normal, shutdown_ok, State};
我的结果是:
> 6>table_test:test(). table_test: kills_board_test (module
> 'table_test')...*failed* in function table_test:kills_board_test/0
> (table_test.erl, line 8)
> **error:{badmatch,[{current_function,{gen_server,loop,6}},
> {initial_call,{proc_lib,init_p,5}},
> {status,waiting},
> {message_queue_len,0},
> {messages,[]},
> {links,[]},
> {dictionary,[{'$initial_call',{board,init,1}},
> {'$ancestors',[<0.351.0>,<0.349.0>]}]},
> {trap_exit,false},
> {error_handler,error_handler},
> {priority,normal},
> {group_leader,<0.350.0>},
> {total_heap_size,233},
> {heap_size,233},
> {stack_size,9},
> {reductions,152},
> {garbage_collection,...},
> {...}]} output:<<"Table Terminating.{<0.352.0>,
> #{current_player => x,result => playing},
> #{o => {<0.355.0>,<0.356.0>},x => {<0.353.0>,<0.354.0>}}} ">>
>
> ======================================================= Failed: 1. Skipped: 0. Passed: 0. error
编辑:
我看到文字“终止”,但我知道停止会在返回之前等待终止完成。