X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=blobdiff_plain;f=test%2Ftoken-websock.qml;fp=test%2Ftoken-websock.qml;h=38e5936236f6d3d69997424421b7a053b01a6422;hp=d8665c7113bf48e5afbb4c9f87b8d5c7e1d0a583;hb=459396440bf35ace1046723a8efab9a9c22629bf;hpb=1a66f6a8c0b213e14bc0b1896bfaa68a5c2a5002 diff --git a/test/token-websock.qml b/test/token-websock.qml index d8665c71..38e59362 100644 --- a/test/token-websock.qml +++ b/test/token-websock.qml @@ -7,7 +7,7 @@ Window { property string address_str: "ws://localhost:1234/api?token=123456" property string token_str: "" - property string api_str: "token" + property string api_str: "auth" property string verb_str: "" property var msgid_enu: { "call":2, "retok":3, "reterr":4, "event":5 } property string request_str: "" @@ -91,7 +91,7 @@ Window { id: create_button text: "Create token" onClicked: { - verb_str = "create" + verb_str = "connect" request_str = '[' + msgid_enu.call + ',"99999","' + api_str+'/'+verb_str + '", ]'; if (!websocket.active) websocket.active = true @@ -115,7 +115,7 @@ Window { id: reset_button text: "Reset token" onClicked: { - verb_str = "reset" + verb_str = "logout" request_str = '[' + msgid_enu.call + ',"99999","' + api_str+'/'+verb_str + '", ]'; websocket.sendTextMessage (request_str) }