feat: support remote Armadillo URLs via local_settings.csv#664
feat: support remote Armadillo URLs via local_settings.csv#664timcadman wants to merge 1 commit intov6.3.6-devfrom
Conversation
There was a problem hiding this comment.
I am wondering about lines 46-50, it appears to me ds.test_env$server_ip_address is just ip address, but is being assigned to a URL at line 49, so doesn't specify protocol or port of URL.
Have I missed something?
I think it was intended for remote host name to be placed in "local_settings.csv" if needs to be specified.
|
Maybe I've missed something! The issue I had was that it works fine if you specify localhost in the |
|
OK, but what if a port needs to be added to a hostname other than localhost. For example, if I the test server is http://datashield-big.home:8080/ What make is more complicated is that there is one test that needs a hostname not an url. (PS: Not sure why CSV was chooses, JSON would be more flexible) |
Background
Existing logic to construct armadillo url only works for localhost. To do performance testing we need to use a remote server to simualte real life conditions.
What's changed
If URL specified in
local_settingsis localhost it constructs url, for all other urls it uses as-is.How to test