瀏覽代碼

Rename the 'client_id' option to 'clientid'

Feng Lee 6 年之前
父節點
當前提交
fcb1b83495
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      test/emqx_modules_SUITE.erl

+ 4 - 4
test/emqx_modules_SUITE.erl

@@ -55,11 +55,11 @@ end_per_suite(_Config) ->
 %% Test case for emqx_mod_presence
 t_mod_presence(_) ->
     ok = emqx_mod_presence:load([{qos, ?QOS_1}]),
-    {ok, C1} = emqtt:start_link([{client_id, <<"monsys">>}]),
+    {ok, C1} = emqtt:start_link([{clientid, <<"monsys">>}]),
     {ok, _} = emqtt:connect(C1),
     {ok, _Props, [?QOS_1]} = emqtt:subscribe(C1, <<"$SYS/brokers/+/clients/#">>, qos1),
     %% Connected Presence
-    {ok, C2} = emqtt:start_link([{client_id, <<"clientid">>},
+    {ok, C2} = emqtt:start_link([{clientid, <<"clientid">>},
                                  {username, <<"username">>}]),
     {ok, _} = emqtt:connect(C2),
     ok = recv_and_check_presence(<<"clientid">>, <<"connected">>),
@@ -98,7 +98,7 @@ recv_and_check_presence(ClientId, Presence) ->
 t_mod_subscription(_) ->
     emqx_mod_subscription:load([{<<"connected/%c/%u">>, ?QOS_0}]),
     {ok, C} = emqtt:start_link([{host, "localhost"},
-                                {client_id, "myclient"},
+                                {clientid, "myclient"},
                                 {username, "admin"}]),
     {ok, _} = emqtt:connect(C),
     emqtt:publish(C, <<"connected/myclient/admin">>, <<"Hello world">>, ?QOS_0),
@@ -111,7 +111,7 @@ t_mod_subscription(_) ->
 %% Test case for emqx_mod_write
 t_mod_rewrite(_Config) ->
     ok = emqx_mod_rewrite:load(?RULES),
-    {ok, C} = emqtt:start_link([{client_id, <<"rewrite_client">>}]),
+    {ok, C} = emqtt:start_link([{clientid, <<"rewrite_client">>}]),
     {ok, _} = emqtt:connect(C),
     OrigTopics = [<<"x/y/2">>, <<"x/1/2">>, <<"y/a/z/b">>, <<"y/def">>],
     DestTopics = [<<"z/y/2">>, <<"x/1/2">>, <<"y/z/b">>, <<"y/def">>],