Exemplo n.º 1
0
        public void GetObject_RequestedRangeNotSatisfiableExceptionMarshallTest()
        {
            var operation = service_model.FindOperation("GetObject");

            var request         = InstantiateClassGenerator.Execute <GetObjectRequest>();
            var marshaller      = new GetObjectRequestMarshaller();
            var internalRequest = marshaller.Marshall(request);

            TestTools.RequestValidator.Validate("GetObject", request, internalRequest, service_model);

            var exception   = operation.Exceptions.First(e => e.Name.Equals("RequestedRangeNotSatisfiableException"));
            var webResponse = new WebResponseData
            {
                Headers =
                {
                    { "Cache-Control",    "Cache-Control_Value"                                },
                    { "Content-Length",   long.MaxValue.ToString(CultureInfo.InvariantCulture) },
                    { "Content-Range",    "Content-Range_Value"                                },
                    { "Content-Type",     "Content-Type_Value"                                 },
                    { "ETag",             "ETag_Value"                                         },
                    { "Last-Modified",    ValidatorUtils.GetTestDate(TimestampFormat.RFC822)   },
                    { "x-amzn-RequestId", Guid.NewGuid().ToString()                            },
                    { "x-amz-crc32",      "0"                                                  },
                    { "x-amzn-ErrorType", "RequestedRangeNotSatisfiableException"              },
                }
            };

            var payloadResponse = new JsonSampleGenerator(service_model, exception).Execute();

            webResponse.Headers["Content-Length"] = UTF8Encoding.UTF8.GetBytes(payloadResponse).Length.ToString();
            var context  = new JsonUnmarshallerContext(Utils.CreateStreamFromString(payloadResponse), true, webResponse, true);
            var response = GetObjectResponseUnmarshaller.Instance.UnmarshallException(context, null, System.Net.HttpStatusCode.OK);

            InstantiateClassGenerator.ValidateObjectFullyInstantiated(response);
        }
        public void GetObjectMarshallTest()
        {
            var operation = service_model.FindOperation("GetObject");

            var request    = InstantiateClassGenerator.Execute <GetObjectRequest>();
            var marshaller = new GetObjectRequestMarshaller();

            var internalRequest = marshaller.Marshall(request);

            TestTools.RequestValidator.Validate("GetObject", request, internalRequest, service_model);

            var webResponse = new WebResponseData
            {
                Headers =
                {
                    { "Cache-Control",    "Cache-Control_Value"                                },
                    { "Content-Length",   long.MaxValue.ToString(CultureInfo.InvariantCulture) },
                    { "Content-Range",    "Content-Range_Value"                                },
                    { "Content-Type",     "Content-Type_Value"                                 },
                    { "ETag",             "ETag_Value"                                         },
                    { "Last-Modified",    ValidatorUtils.GetTestDate(TimestampFormat.RFC822)   },
                    { "x-amzn-RequestId", Guid.NewGuid().ToString()                            },
                    { "x-amz-crc32",      "0"                                                  }
                }
            };

            var payloadResponse = new JsonSampleGenerator(service_model, operation.ResponseStructure).Execute();

            webResponse.Headers["Content-Length"] = UTF8Encoding.UTF8.GetBytes(payloadResponse).Length.ToString();
            var context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(payloadResponse), false, webResponse);
            ResponseUnmarshaller unmarshaller = GetObjectResponseUnmarshaller.Instance;
            var response = unmarshaller.Unmarshall(context) as GetObjectResponse;

            InstantiateClassGenerator.ValidateObjectFullyInstantiated(response);
        }
Exemplo n.º 3
0
        public void GreedyPathStartingWithoutSlashTest()
        {
            var request = InstantiateClassGenerator.Execute <GetObjectRequest>();

            request.Path = "TestPath/foo/bar";
            var marshaller = new GetObjectRequestMarshaller();

            var internalRequest = marshaller.Marshall(request);

            Assert.AreEqual(internalRequest.ResourcePath, "/" + request.Path);
        }
        public void ExpectedBucketOwnerSetTest()
        {
            string ExpectedBucketOwnerHeader = "x-amz-expected-bucket-owner";
            string ExpectedBucketOwnerValue  = "testaccount";

            var requestObject = new GetObjectRequest
            {
                Key                 = "testKey",
                BucketName          = "testBucket",
                ExpectedBucketOwner = ExpectedBucketOwnerValue
            };

            GetObjectRequestMarshaller marshaller = new GetObjectRequestMarshaller();
            var request = marshaller.Marshall(requestObject);

            Assert.IsTrue(request.Headers.ContainsKey(ExpectedBucketOwnerHeader));
            Assert.AreEqual(request.Headers[ExpectedBucketOwnerHeader], ExpectedBucketOwnerValue);
        }