public void PutPageBlob_WithSequenceNumber_AssignsSpecifiedSequenceNumberToBlob() { var containerName = _util.GenerateSampleContainerName(_runId); var blobName = _util.GenerateSampleBlobName(_runId); _util.CreateContainer(containerName); IBlobServiceClient client = new BlobServiceClient(AccountSettings); const int expectedSize = 512; const long expectedSequenceNumber = 123; client.PutPageBlob(containerName, blobName, expectedSize, sequenceNumber: expectedSequenceNumber); var blob = _util.AssertBlobExists(containerName, blobName, BlobType.PageBlob); Assert.AreEqual(expectedSequenceNumber, blob.Properties.PageBlobSequenceNumber); }
public void PutPageBlob_WithMetadata_UploadsMetadata() { var containerName = _util.GenerateSampleContainerName(_runId); var blobName = _util.GenerateSampleBlobName(_runId); _util.CreateContainer(containerName); IBlobServiceClient client = new BlobServiceClient(AccountSettings); var expectedMetadata = new Dictionary<string, string>(){ { "firstValue", "1" }, { "secondValue", "2"} }; const int expectedSize = 512; client.PutPageBlob(containerName, blobName, expectedSize, metadata: expectedMetadata); var blob = _util.AssertBlobExists(containerName, blobName, BlobType.PageBlob); Assert.IsTrue(blob.Metadata.Any(m => m.Key == "firstValue" && m.Value == "1"), "First value is missing or incorrect"); Assert.IsTrue(blob.Metadata.Any(m => m.Key == "secondValue" && m.Value == "2"), "Second value is missing or incorrect"); }
public void PutPageBlob_WithCacheControl_UploadsWithCacheControl() { var containerName = _util.GenerateSampleContainerName(_runId); var blobName = _util.GenerateSampleBlobName(_runId); _util.CreateContainer(containerName); IBlobServiceClient client = new BlobServiceClient(AccountSettings); string expectedCacheControl = "123-ABC"; int expectedSize = 512; client.PutPageBlob(containerName, blobName, expectedSize, cacheControl: expectedCacheControl); var blob = _util.AssertBlobExists(containerName, blobName, BlobType.PageBlob); Assert.AreEqual(expectedCacheControl, blob.Properties.CacheControl); }
public void PutPageBlob_WithContentLanguage_UploadsWithSpecifiedContentLanguage() { var containerName = _util.GenerateSampleContainerName(_runId); var blobName = _util.GenerateSampleBlobName(_runId); _util.CreateContainer(containerName); IBlobServiceClient client = new BlobServiceClient(AccountSettings); string expectedContentLanguage = "gibberish"; int expectedSize = 512; client.PutPageBlob(containerName, blobName, expectedSize, contentLanguage: expectedContentLanguage); var blob = _util.AssertBlobExists(containerName, blobName, BlobType.PageBlob); Assert.AreEqual(expectedContentLanguage, blob.Properties.ContentLanguage); }
public void PutPageBlob_WithRequiredArgs_CreatesNewPageBlob() { var containerName = _util.GenerateSampleContainerName(_runId); var blobName = _util.GenerateSampleBlobName(_runId); _util.CreateContainer(containerName); IBlobServiceClient client = new BlobServiceClient(AccountSettings); int expectedSize = 512; client.PutPageBlob(containerName, blobName, expectedSize); var blob = _util.AssertBlobExists(containerName, blobName, BlobType.PageBlob); Assert.AreEqual(expectedSize, blob.Properties.Length); }
public void PutPageBlob_WithContentEncoding_UploadsWithSpecifiedContentEncoding() { var containerName = GenerateSampleContainerName(); var blobName = GenerateSampleBlobName(); CreateContainer(containerName); IBlobServiceClient client = new BlobServiceClient(AccountSettings); string expectedContentEncoding = "UTF8"; int expectedSize = 512; client.PutPageBlob(containerName, blobName, expectedSize, contentEncoding: expectedContentEncoding); var blob = AssertBlobExists(containerName, blobName, BlobType.PageBlob); Assert.AreEqual(expectedContentEncoding, blob.Properties.ContentEncoding); }