def test_build_curl_call_list(self, fix_anonymous):
        "Test building curl debugging command with data list."
        from relayr.api import build_curl_call

        res = build_curl_call("POST", "http://foo.com/bar", data=[None, 23, "42"], headers={"SUPER_SECRET_KEY": "123"})
        exp = 'curl -X POST "http://foo.com/bar" -H "SUPER_SECRET_KEY: 123" --data "[null, 23, \\"42\\"]"'
        assert res == exp
    def test_build_curl_call_dict(self, fix_anonymous):
        "Test building curl debugging command with data dict."
        from relayr.api import build_curl_call

        res = build_curl_call("POST", "http://foo.com/bar", data={"x": 42}, headers={"SUPER_SECRET_KEY": "123"})
        exp = 'curl -X POST "http://foo.com/bar" -H "SUPER_SECRET_KEY: 123" --data "{\\"x\\": 42}"'
        assert res == exp
Exemplo n.º 3
0
 def test_build_curl_call_dict(self, fix_anonymous):
     "Test building curl debugging command with data dict."
     from relayr.api import build_curl_call
     res = build_curl_call('POST', 'http://foo.com/bar',
         data={'x': 42},
         headers={'SUPER_SECRET_KEY': '123'})
     exp = 'curl -X POST http://foo.com/bar -H "SUPER_SECRET_KEY: 123" --data "{\\"x\\": 42}"'
     assert res == exp
Exemplo n.º 4
0
 def test_build_curl_call_list(self, fix_anonymous):
     "Test building curl debugging command with data list."
     from relayr.api import build_curl_call
     res = build_curl_call('POST', 'http://foo.com/bar',
         data=[None, 23, "42"],
         headers={'SUPER_SECRET_KEY': '123'})
     exp = 'curl -X POST "http://foo.com/bar" -H "SUPER_SECRET_KEY: 123" --data "[null, 23, \\"42\\"]"'
     assert res == exp
Exemplo n.º 5
0
 def test_build_curl_call_dict(self, fix_anonymous):
     "Test building curl debugging command with data dict."
     from relayr.api import build_curl_call
     res = build_curl_call('POST', 'http://foo.com/bar',
         data={'x': 42},
         headers={'SUPER_SECRET_KEY': '123'})
     exp = 'curl -X POST "http://foo.com/bar" -H "SUPER_SECRET_KEY: 123" --data "{\\"x\\": 42}"'
     assert res == exp