Esempio n. 1
0
        public async Task ResponseInfoPackedCorrectly()
        {
            using (var client = new HttpClient(new HttpClientHandler(), true))
            {
                client.BaseAddress = new Uri("https://www.googleapis.com/");
                var response = await client.GetAsync("storage/v1/b/uspto-pair");
                response.EnsureSuccessStatusCode();

                var formatter = new DesktopMessagetFormatter();

                // this is the object that is serialized (response, normalized request query and pointer to the content file)
                var info = formatter.PackageResponse(response);

                Assert.IsNotNull(info);
                Assert.IsTrue(info.ContentFileName.EndsWith("json"));
            }
        }
Esempio n. 2
0
        public async Task CreateContentFromSerializedResponse()
        {
            using (var client = new HttpClient(new HttpClientHandler(), true))
            {
                client.BaseAddress = new Uri("https://www.googleapis.com/");
                var response = await client.GetAsync("storage/v1/b/uspto-pair");
                response.EnsureSuccessStatusCode();

                var formatter = new DesktopMessagetFormatter();

                // this is the object that is serialized (response, normalized request query and pointer to the content file)
                var info = formatter.PackageResponse(response);
                var json = JsonConvert.SerializeObject(info, Formatting.Indented);

                var newInfo = JsonConvert.DeserializeObject<ResponseInfo>(json);
                var content = newInfo.CreateContent(new MemoryStream());

                Assert.AreEqual("UTF-8", content.Headers.ContentType.CharSet);
                Assert.AreEqual("application/json", content.Headers.ContentType.MediaType);
            }
        }
Esempio n. 3
0
        public async Task RoundTripResponseInfo()
        {
            using (var client = new HttpClient(new HttpClientHandler(), true))
            {
                client.BaseAddress = new Uri("https://www.googleapis.com/");
                var response = await client.GetAsync("storage/v1/b/uspto-pair");
                response.EnsureSuccessStatusCode();

                var formatter = new DesktopMessagetFormatter();

                // this is the object that is serialized (response, normalized request query and pointer to the content file)
                var info = formatter.PackageResponse(response);

                var json = JsonConvert.SerializeObject(info, Formatting.Indented);
                var newInfo = JsonConvert.DeserializeObject<ResponseInfo>(json);

                Assert.AreEqual(info.StatusCode, newInfo.StatusCode);
                Assert.AreEqual(info.Query, newInfo.Query);
                Assert.AreEqual(info.ContentFileName, newInfo.ContentFileName);
            }
        }