Exemplo n.º 1
0
        public void ShouldExpandVariableWithSizeLimitGreaterThanValue()
        {
            UriTemplate template = new UriTemplate("{var:30}");
            string      result   = template.Expand(new { var = "value" });

            Assert.AreEqual("value", result);
        }
Exemplo n.º 2
0
        public void ShouldExpandVariablesInQueryContinuation()
        {
            UriTemplate template = new UriTemplate("?fixed=yes{&x}");
            string      result   = template.Expand(new { x = 1024 });

            Assert.AreEqual("?fixed=yes&x=1024", result);
        }
Exemplo n.º 3
0
        public void ShouldExpandVariablesWithEmptyInQueryContinuation()
        {
            UriTemplate template = new UriTemplate("{&x,y,empty}");
            string      result   = template.Expand(new { x = 1024, y = 768, empty = "" });

            Assert.AreEqual("&x=1024&y=768&empty=", result);
        }
Exemplo n.º 4
0
        public void ShouldExpandVariablesWithEmptyForPathStyleParameters()
        {
            UriTemplate template = new UriTemplate("{;x,y,empty}");
            string      result   = template.Expand(new { x = 1024, y = 768, empty = "" });

            Assert.AreEqual(";x=1024;y=768;empty", result);
        }
Exemplo n.º 5
0
        public void ShouldExpandVariablesInQuery()
        {
            UriTemplate template = new UriTemplate("{?x,y}");
            string      result   = template.Expand(new { x = 1024, y = 768 });

            Assert.AreEqual("?x=1024&y=768", result);
        }
Exemplo n.º 6
0
        public void ShouldExpandVariablesInPathSegment()
        {
            UriTemplate template = new UriTemplate("{/var,x}/here");
            string      result   = template.Expand(new { var = "value", x = 1024 });

            Assert.AreEqual("/value/1024/here", result);
        }
Exemplo n.º 7
0
        public void ShouldExpandVariableInPathSegment()
        {
            UriTemplate template = new UriTemplate("{/var}");
            string      result   = template.Expand(new { var = "value" });

            Assert.AreEqual("/value", result);
        }
Exemplo n.º 8
0
        public void ShouldExpandVariablesInLabelExpansion()
        {
            UriTemplate template = new UriTemplate("X{.x,y}");
            string      result   = template.Expand(new { x = 1024, y = 768 });

            Assert.AreEqual("X.1024.768", result);
        }
Exemplo n.º 9
0
        public void ShouldExpandVariableWhenReservedAllowed()
        {
            UriTemplate template = new UriTemplate("{+var}");
            string      result   = template.Expand(new { var = "value" });

            Assert.AreEqual("value", result);
        }
Exemplo n.º 10
0
        public void ShouldExpandVariableWithSlashWhenReservedAllowed()
        {
            UriTemplate template = new UriTemplate("{+path}/here");
            string      result   = template.Expand(new { path = "/foo/bar" });

            Assert.AreEqual("/foo/bar/here", result);
        }
Exemplo n.º 11
0
        private Uri applyParameters(string uriTemplate, bool caseSensitive, object uriParameters)
        {
            UriTemplate template = new UriTemplate(uriTemplate, caseSensitive);
            string      uri      = template.Expand(uriParameters);

            return(new Uri(uri));
        }
Exemplo n.º 12
0
        public void ShouldExpandVariables()
        {
            UriTemplate template = new UriTemplate("map?{x,y}");
            string      result   = template.Expand(new { x = "1024", y = "768" });

            Assert.AreEqual("map?1024,768", result);
        }
Exemplo n.º 13
0
        public void ShouldExpandListInQuery()
        {
            UriTemplate template = new UriTemplate("{?list}");
            string      result   = template.Expand(new { list = new string[] { "red", "green", "blue" } });

            Assert.AreEqual("?list=red,green,blue", result);
        }
Exemplo n.º 14
0
        public void ShouldExpandVariableWithSizeLimitSmallerThanValueForPathStyleParameters()
        {
            UriTemplate template = new UriTemplate("{;hello:5}");
            string      result   = template.Expand(new { hello = "Hello World!" });

            Assert.AreEqual(";hello=Hello", result);
        }
Exemplo n.º 15
0
        public void ShouldExpandListWhenExplodedForPathStyleParameters()
        {
            UriTemplate template = new UriTemplate("{;list*}");
            string      result   = template.Expand(new { list = new string[] { "red", "green", "blue" } });

            Assert.AreEqual(";list=red;list=green;list=blue", result);
        }
Exemplo n.º 16
0
        public void ShouldExpandVariableWithSpaceWhenReservedAllowed()
        {
            UriTemplate template = new UriTemplate("{+hello}");
            string      result   = template.Expand(new { hello = "Hello, World!" });

            Assert.AreEqual("Hello,+World!", result);
        }
Exemplo n.º 17
0
        public void ShouldExpandVariableWithReservedCharacterInFragmentExpansion()
        {
            UriTemplate template = new UriTemplate("X{#hello}");
            string      result   = template.Expand(new { hello = "Hello World!" });

            Assert.AreEqual("X#Hello+World!", result);
        }
Exemplo n.º 18
0
        public void ShouldExpandVariableInFragmentExpansion()
        {
            UriTemplate template = new UriTemplate("X{#var}");
            string      result   = template.Expand(new { var = "value" });

            Assert.AreEqual("X#value", result);
        }
Exemplo n.º 19
0
        public void ShouldExpandListWhenExplodedInQueryContinuation()
        {
            UriTemplate template = new UriTemplate("{&list*}");
            string      result   = template.Expand(new { list = new string[] { "red", "green", "blue" } });

            Assert.AreEqual("&list=red&list=green&list=blue", result);
        }
Exemplo n.º 20
0
        public void ShouldExpandVariableWithSmallerSizeLimitInLabelExpansion()
        {
            UriTemplate template = new UriTemplate("X{.var:3}");
            string      result   = template.Expand(new { var = "value" });

            Assert.AreEqual("X.val", result);
        }
Exemplo n.º 21
0
        public void ShouldExpandListWhenExplodedInLabelExpansion()
        {
            UriTemplate template = new UriTemplate("X{.list*}");
            string      result   = template.Expand(new { list = new string[] { "red", "green", "blue" } });

            Assert.AreEqual("X.red.green.blue", result);
        }
Exemplo n.º 22
0
        public void ShouldExpandVariablesWithSlashWhenReservedAllowedInFragmentExpansion()
        {
            UriTemplate template = new UriTemplate("{#path,x}/here");
            string      result   = template.Expand(new { x = 1024, path = "/foo/bar", y = 768 });

            Assert.AreEqual("#/foo/bar,1024/here", result);
        }
Exemplo n.º 23
0
        public void ShouldExpandListWhenExplodedInFragmentExpansion()
        {
            UriTemplate template = new UriTemplate("{#list*}");
            string      result   = template.Expand(new { list = new string[] { "red", "green", "blue" } });

            Assert.AreEqual("#red,green,blue", result);
        }
Exemplo n.º 24
0
        public void ShouldExpandVariableWithSmallerSizeLimitInFragmentExpansion()
        {
            UriTemplate template = new UriTemplate("{#path:6}/here");
            string      result   = template.Expand(new { path = "/foo/bar" });

            Assert.AreEqual("#/foo/b/here", result);
        }
Exemplo n.º 25
0
        public void ShouldExpandVariableWithSizeLimitSmallerThanValueInQueryContinuation()
        {
            UriTemplate template = new UriTemplate("{&var:3}");
            string      result   = template.Expand(new { var = "value" });

            Assert.AreEqual("&var=val", result);
        }
Exemplo n.º 26
0
        public void ShouldExpandVariableWithSizeLimitSmallerThanValueInPathSegment()
        {
            UriTemplate template = new UriTemplate("{/var:1,var}");
            string      result   = template.Expand(new { var = "value" });

            Assert.AreEqual("/v/value", result);
        }
Exemplo n.º 27
0
        public void ShouldExpandVariablesWithReservedCharacters()
        {
            UriTemplate template = new UriTemplate("{x,hello,y}");
            string      result   = template.Expand(new { x = "1024", hello = "Hello World!", y = 768 });

            Assert.AreEqual("1024,Hello+World!,768", result);
        }
Exemplo n.º 28
0
        public void ShouldExpandListWhenExplodedInPathSegment()
        {
            UriTemplate template = new UriTemplate("{/list}");
            string      result   = template.Expand(new { list = new string[] { "red", "green", "blue" } });

            Assert.AreEqual("/red,green,blue", result);
        }
Exemplo n.º 29
0
        public void ShouldExpandVariablesWithSpaceWhenReservedAllowedInFragmentExpansion()
        {
            UriTemplate template = new UriTemplate("{#x,hello,y}");
            string      result   = template.Expand(new { x = 1024, hello = "Hello World!", y = 768 });

            Assert.AreEqual("#1024,Hello+World!,768", result);
        }
Exemplo n.º 30
0
        public void ShouldExpandListWhenExplodedWhenReservedAllowed()
        {
            UriTemplate template = new UriTemplate("{+list*}");
            string      result   = template.Expand(new { list = new List <string>()
                                                         {
                                                             "red", "green", "blue"
                                                         } });

            Assert.AreEqual("red,green,blue", result);
        }