Refactor URI usage and remove hard-coded IP addreses from tests
Tarantool started to use getaddrinfo() to find suitable address for binding both for IPROTO and CONSOLE ports. A hostname can be resolved to various addresses families, depending on user settings. For example, all moderns systems resolve 'localhost' to '::1' by default. This creates a problem if one subsystem binds to '127.0.0.1' and some other tries to connect '::1'. This patch unify hardcoded names and addresses in entire test suite to use the same value. This is pre-requisite for #447, #368 and other URI-related patches. Other changes: * console.listen() now properly handles address arguments * console.listen() re-based on socket.tcp_server() code
Showing
- src/lua/console.lua 20 additions, 45 deletionssrc/lua/console.lua
- test/box/access.result 8 additions, 1 deletiontest/box/access.result
- test/box/access.test.lua 3 additions, 1 deletiontest/box/access.test.lua
- test/box/access_bin.result 9 additions, 2 deletionstest/box/access_bin.result
- test/box/access_bin.test.lua 4 additions, 2 deletionstest/box/access_bin.test.lua
- test/box/bad_trigger.result 2 additions, 2 deletionstest/box/bad_trigger.result
- test/box/bad_trigger.test.py 6 additions, 4 deletionstest/box/bad_trigger.test.py
- test/box/box.net.box.result 8 additions, 8 deletionstest/box/box.net.box.result
- test/box/box.net.box.test.lua 8 additions, 8 deletionstest/box/box.net.box.test.lua
- test/box/bsdsocket.result 12 additions, 4 deletionstest/box/bsdsocket.result
- test/box/bsdsocket.test.lua 4 additions, 4 deletionstest/box/bsdsocket.test.lua
- test/box/iproto.test.py 4 additions, 2 deletionstest/box/iproto.test.py
- test/box/protocol.result 6 additions, 2 deletionstest/box/protocol.result
- test/box/protocol.test.lua 3 additions, 2 deletionstest/box/protocol.test.lua
- test/box/session.result 6 additions, 3 deletionstest/box/session.result
- test/box/session.test.lua 4 additions, 3 deletionstest/box/session.test.lua
- test/lib/preprocessor.py 2 additions, 2 deletionstest/lib/preprocessor.py
- test/lib/server.py 1 addition, 2 deletionstest/lib/server.py
- test/lib/tarantool-python 1 addition, 1 deletiontest/lib/tarantool-python
- test/lib/tarantool_connection.py 9 additions, 2 deletionstest/lib/tarantool_connection.py
Loading
Please register or sign in to comment