public void Remove_an_existing_parameter() { var target = new Uri("http://example/customer?view=False&foo=bar"); var template = target.MakeTemplate(); template.ClearParameter("view"); Assert.Equal("http://example/customer?foo=bar", template.Resolve()); }
public void Change_an_existing_parameter() { var target = new Uri("http://example/customer?view=False&foo=bar"); var template = target.MakeTemplate(); template.SetParameter("view",true); Assert.Equal("http://example/customer?view=True&foo=bar", template.Resolve()); }
public void Remove_a_query_parameters2() { var target = new Uri("http://example.org/customer?format=xml&id=23"); var template = target.MakeTemplate(); template.ClearParameter("format"); Assert.Equal("http://example.org/customer?id=23", template.Resolve()); }
public void Change_an_existing_parameter_within_multiple() { var target = new Uri("http://example/customer?view=False&foo=bar"); var parameters = target.GetQueryStringParameters(); parameters["view"] = true; var template = target.MakeTemplate(parameters); Assert.Equal("http://example/customer?view=True&foo=bar", template.Resolve()); }
public void Add_parameters_to_uri_with_query_string_ignoring_path_parameter() { var target = new Uri("http://example/customer/{id}?view=true"); var template = target.MakeTemplate(target.GetQueryStringParameters() .Union(new Dictionary<string, object> {{"context", "detail"}}) .ToDictionary(k=> k.Key, v=> v.Value)); template.AddParameter("id", 99); Assert.Equal("http://example/customer/99?view=true&context=detail", template.Resolve()); }
public void Add_multiple_parameters_to_uri() { var target = new Uri("http://example/customer"); var template = target.MakeTemplate(new Dictionary<string, object> { {"id", 99}, {"view", false} }); Assert.Equal("http://example/customer?id=99&view=False", template.Resolve()); }
public void Foo() { var foo = new Foo() { Bar = "hello world", Baz = 10 }; var uri = new Uri("http://example.org/blah"); var uri2 = uri.MakeTemplate(Tavis.UriExtensions.ObjectToDictionary(foo)); Assert.Equal("http://example.org/blah?Bar=hello%20world&Baz=10", uri2.Resolve()); }