Skip to content
Snippets Groups Projects
Commit 0a6bde06 authored by Nick Zavaritsky's avatar Nick Zavaritsky
Browse files

Add test case for a.b.c.d parsing in iproto call

parent b948587b
No related branches found
No related tags found
No related merge requests found
......@@ -602,6 +602,31 @@ res[1][2] == string.rep('a', 50000)
---
- true
...
-- a.b.c.d
u = '84F7BCFA-079C-46CC-98B4-F0C821BE833E'
---
...
X = {}
---
...
X.X = X
---
...
function X.fn(x,y) return y or x end
---
...
cn:call('X.fn', u)
---
- - ['84F7BCFA-079C-46CC-98B4-F0C821BE833E']
...
cn:call('X.X.X.X.X.X.X.fn', u)
---
- - ['84F7BCFA-079C-46CC-98B4-F0C821BE833E']
...
cn:call('X.X.X.X:fn', u)
---
- - ['84F7BCFA-079C-46CC-98B4-F0C821BE833E']
...
-- auth
cn = remote:new(LISTEN.host, LISTEN.service, { user = 'netbox', password = '123', wait_connected = true })
---
......
......@@ -230,6 +230,15 @@ res = cn:call('long_rep')
res[1][1] == 1
res[1][2] == string.rep('a', 50000)
-- a.b.c.d
u = '84F7BCFA-079C-46CC-98B4-F0C821BE833E'
X = {}
X.X = X
function X.fn(x,y) return y or x end
cn:call('X.fn', u)
cn:call('X.X.X.X.X.X.X.fn', u)
cn:call('X.X.X.X:fn', u)
-- auth
cn = remote:new(LISTEN.host, LISTEN.service, { user = 'netbox', password = '123', wait_connected = true })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment