-
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
azurite preset based on the localstack preset (#837)
- Loading branch information
1 parent
e1426bb
commit 5ed38a4
Showing
127 changed files
with
932 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
package gnomockd_test | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"encoding/json" | ||
"fmt" | ||
"io" | ||
"net/http" | ||
"net/http/httptest" | ||
"os" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob" | ||
"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/container" | ||
"github.com/orlangure/gnomock" | ||
"github.com/orlangure/gnomock/internal/gnomockd" | ||
"github.com/orlangure/gnomock/preset/azurite" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestAzurite(t *testing.T) { | ||
t.Parallel() | ||
|
||
h := gnomockd.Handler() | ||
bs, err := os.ReadFile("./testdata/azurite.json") | ||
require.NoError(t, err) | ||
|
||
buf := bytes.NewBuffer(bs) | ||
w, r := httptest.NewRecorder(), httptest.NewRequest(http.MethodPost, "/start/azurite", buf) | ||
h.ServeHTTP(w, r) | ||
|
||
res := w.Result() | ||
|
||
defer func() { require.NoError(t, res.Body.Close()) }() | ||
|
||
body, err := io.ReadAll(res.Body) | ||
require.NoError(t, err) | ||
|
||
require.Equalf(t, http.StatusOK, res.StatusCode, string(body)) | ||
|
||
var c *gnomock.Container | ||
|
||
err = json.Unmarshal(body, &c) | ||
require.NoError(t, err) | ||
|
||
connString := fmt.Sprintf( | ||
azurite.ConnectionStringFormat, | ||
azurite.AccountName, | ||
azurite.AccountKey, | ||
c.Address(azurite.BlobServicePort), | ||
azurite.AccountName) | ||
|
||
ctx := context.Background() | ||
azblobClient, connErr := azblob.NewClientFromConnectionString(connString, nil) | ||
require.NoError(t, connErr) | ||
|
||
var maxResults int32 = 200 | ||
options := azblob.ListBlobsFlatOptions{ | ||
Include: container.ListBlobsInclude{}, | ||
Marker: nil, | ||
MaxResults: &maxResults, | ||
Prefix: nil, | ||
} | ||
pager := azblobClient.NewListBlobsFlatPager("some-bucket", &options) | ||
require.Equal(t, pager.More(), true) | ||
|
||
pagesScanned := 0 | ||
|
||
for pager.More() { | ||
pagesScanned++ | ||
|
||
resp, err := pager.NextPage(ctx) | ||
|
||
require.NoError(t, err) | ||
require.Equal(t, 100, len(resp.Segment.BlobItems)) | ||
|
||
for _, v := range resp.Segment.BlobItems { | ||
require.True(t, strings.HasPrefix(*v.Name, "/file-")) | ||
} | ||
} | ||
|
||
require.Equal(t, 1, pagesScanned) | ||
|
||
bs, err = json.Marshal(c) | ||
require.NoError(t, err) | ||
|
||
buf = bytes.NewBuffer(bs) | ||
w, r = httptest.NewRecorder(), httptest.NewRequest(http.MethodPost, "/stop", buf) | ||
h.ServeHTTP(w, r) | ||
|
||
res = w.Result() | ||
require.Equal(t, http.StatusOK, res.StatusCode) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"preset": { | ||
"blobstore_path": "./testdata/azurite/blobstore", | ||
"version": "3.22.0" | ||
}, | ||
"options": { | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
b72ec76436b8a91d7dd090dcda45c415ab29dbf2161675b87eb36dcab3d89a52faf1739a319ed2f8bd09e80823d6ca51fd71486b477ef8eefb1fda86845b63e5 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
288a3d8cd6db81679c7fe49c9369d4e35f302a8b763a5e88b77a9d7948536d43dc45d6658f44b49ac90ece6562595f8204d1425a40174c5634cbf1c35e5e3bb8 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-100
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
4f0d13f3f4698ef87a68aaef3d4170edcab46ca9623f805da0fd354eb80def890444d901facac717011d6d9f1b9703c6e559fa28fab3521d965b80ba5b6f2de4 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0b02647f28bf44c188a0ab65d67ccbd7a6e6b6625c7760fdc7f492871c1ed69d1d9c2f1911456dabf90282c980683ea5ad04524b6d64d0a7d5340e8500e2cce7 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
02f0a852ac7c53ba0d04c34385a1ccfb96d615af89caa066466ed0923a5abcdf0f0ad73a6bd92c655a1eb67ef55b6960d17927cc2fd2f1389f6d3be6be927d91 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1c9b6194392fcfcea82208553b59f8bdbb50c44ded7037010ad946afa2a8dca2d9125a4b20074134f7ae432cd7a677439e43262ae8568267702580347bfe72c3 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
b05cef2d070695b395aad949d0fb188f749c73998b95bb24bc0d5eb91df82a8b70141c80f8d9fb834d82710c7071221f8e269d31dba312e8e65b380e35bed749 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fdd491662466a8dbd4b8a540df7525b6e648f79c840413f98472ba748c0d388fcb2f148d549f14a15230250461357b4294161c954cdc9e68b1124a147b7933bf |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
228387a75e1b50a34e86e88ea692fe7317848e07a21ec8ecf6e56f8e46919ab9efec897b8ce3f9c3976bfbbc41e2e3337b585d53c0b02cc6e4133c08413386bb |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bf7935459585a5d86d098cb1f705a4ee2260fd745c7c3471d9b2498c94317c2d8c4dbea7ccd59a016583cbfb912ebebe2a0ecb94a21984f06da97f14ac859ddc |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
b9e5b21f78064ed3221eb020bcf5ac1038f204954539001e114f23bcec4ee9b211001dcf89b8ab22ac1296bc864d68c67e8545e98cfdf79fe8e8d929f7a03a30 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3647089511907596192e85b6f1aece4bef2a23e410a7453dcf94e87d5dc5ac98f8b0ae6526e44015ac555bdc86181c83ef4428484e3c2b8ab2083e5e6a97abde |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dbb1d95fa804ae3cb81334b04cc37b45c4a70955c28069079b99d62d25423ba913a1be52224aca3b8cf69e71dba9f3460e86ccbe47e71bdbb8d99c5fe28d8dbf |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
f96d7440645428b612a69108edd2fa7f5f05e0993d32f84df6d2574e1beaae74e7f3b0298edeadc2b92a94d73bbe18c49730cfda18c4acc3409d9eb934d8630e |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
e1bed71ab9700a7942f6b97813f0d196365f9ab0366b95a1dd00f22e3ba614131c10a757bcc73c1687b9b5922558bceeb20cbf26222911cfb92b7301b7efd838 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
d80774e39cb322471aca968a259944ac78c0b8cb755d67f182601b09da4c585bde50e95547c8fcacb30ffd530c121d1152b0c84378d17cab07a17e8247157c05 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6d8dec47389adb0a42be012e47df63a75248b61b18e92bdeee52cce9a7ce3358198289ec8b6cc625564c7c35bfa47da8acd3564edce650e072361c8394ebeb86 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
50559c51ce97720c0b5c1daa57140c2c3ca715ce51a5328b1e3a0157aad6a4c893a56b4e1a5784a8e0d4d81e6689376acf776d2d720f6b8cd8d14c38ab720dc4 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
02ab26ece2518e9a813e0447ab63c1a46de881ec7c694b7394ed8f5e7806b26d2a1b1b7d33af9efd5724348d901c71019c05984cda53a95bf743b71ca533c73b |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
7f8d115625d6422441f0fdc30c247640f39a688051e3637ab797a68df790653cd7a5c38d57eb237d0133bf374d3231816dbd3d903e44e92ab211fca0dc247cb3 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
e95feae17e50290f16b21214996c908e9510a0c1c29168dc0a58af3febb912007fda029ac2abc20da9f53f7a277d973d3a6d5ca4fddd37cf117952de308f9993 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0a4aad7fc04e7666f49cd7cbf660ef0db3ca84bc301457973f6574aae8019984bc6ab2e8f969aed3a570bc8c0a937a20f88a3d771775a0d4d42e86c602d5fdbe |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6d89098292d0cad2ef04e1b291f52e5c912da6e7b865aad3a24996774e3a051c88f76e5b5644dd9cb5f2ad61b641baaafd3a21b25b4a0c1aedca13292241fb5c |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cc896a51322e5a3a506b5bd41e43e1638753a8040e5d5748c8f8164b8a323abba4d5424304d30d08b33aa4a5d4a1eb314efa48debeda09edaacd35078cbdc850 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
f0a725f71d5383b88862dd0cb7639abe176eae7095df1f2721a67b022e43d14635f3585f352e76284c7a07f59e0a174b4fd1fa677ef2d86bdca4a18c18bc9bef |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
a9007229be777af2cb730ed7ca738a5ddfed0d173c54fbfaf27a9177d22c05f260d08de8373eef34c41119aff5c474302c4c3f625099586adb1f730eb3d405a5 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
41c165b3cdb442092c7be171a9e1ba1eb2dd643f6d213ce387d8283274aa02e13adc07dc7c77a8962985d15f5a5cc1e8e59284513e29ef12781a51bdc6ef8b80 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6fbbc2f46aa2d651c8f0630d1f2adf0f89f7c4dd8247098b87a1c0fc740ade7a200bfd957a43ca4941798d3038e1e0e71650562e92f8ec460eb81be92e6743a7 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
47dddfbad04b48396b7f76becdf5232ade5603c9059bf00a9ff4deb5bc8f9601506191b367fae5ea15882a266849cef5dafdc0c3b8b08af5feaed87b5788667c |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
72e9030e39fc9d68582269fcd7f23b93154617854b3ef6cd02c1074024e333384352e4ae047092ed5c3b773a4ff350e1b21634cd2224b90cbaef3f67b4ed8c3e |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
de08d01a267d1b2fc724b49d7dfecca8da81779546195eee337d2aadda3d1fcb8295e78f5f1de78b9d0de44cf70eafc7057361502b5164fe1fb468bf1c56fd81 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cb369a9de31222a52db25b6918b2bbda9e68a4edd6e2a6d1d78320dee05c0987eb12556fdd16520489866f0e139cf4c19eb09931dbba08df80adb3f5e192e16d |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
e419bb0c522fbc237c507dd24a61a59e5a893631dff96b4e3dd15eea3b7be92261bb90420e31b97c40862ac3e71139a799af41ce90e717ca3ad27f537ba1c39b |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
f1f7ca7bbaa97605c1a496c488d8e5fa3a4b3f14c55d03ccdc1e8fffabf2b0edeef784c376a34ff3718a01c0614468334291d7e969884f4d1d684847dd05af2f |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
e822087fe6d58e3741ecfb26515e2618876d320f8f191b5829e54b1a7e6ca90eda654d91bb4aabb195028dbb0e0418446de450bf17f2db22b75640f9634f7af3 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
93905d1540d5ee806a9120de175455e94bdbb66b9bb6bb76cde771bd1205d6fab5d1b363cfd1a60a5aeea98af31b5853e07882b42c735ffbffb531c6e0d18a12 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6fde43af7765155d75b43ef0d50e5bd408787eeacb380424eebde10306d3f467aade28ae520b0c7b4cbdf5c63b5f92533503718d05aaa21f3642054037aba60d |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
74708d0d32981cd92f7486da74cf68e46068aba7d244dc5681c26959abcbeb56abe68cfe0728aea53adc3dc308651e8171fb2f22506c83907561dde6fa8669dd |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
760db25a323a535ee7e584fb209aa739d3ac66684e443bc39686c687ca6d325b5bd7c58f454983c317cb8ccf444a6a6413dcd54ce0fd6dfd2f4fa92ac5c6e3db |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6fce7db5951ed9dfaa2f3b9d625fab289db6c51098fb9324108f2235261fe9478628e24d42307472880277cf949dc4a00a91955616eed4dae1b5797b397e8c61 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
5ef22a53f3a1491903450c1cda2c2cb4d3e660c1f8b377e11d5d4411492e0942c455203e46f35270f56810ec33998a7d5a147817f0a2a84886aad51d25daaedb |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9c7860d924f2f5e3943c13bd40f19d250fa450b925b99f57308685ff19e0ded3b98b6ed08219d37f540c1f515e2a3b31060bc3a6c90a3f9733745798b636b048 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
899c00541c402583e962a0b6e0e46034a08eae0944f1934823545a32fd436447ef8dabed40aca6951ebe3c18257c9a29e44eac42fee1003438e28071aff0cbd9 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
b00e050eb9120f7ab42faf321bbd21cf6663e8320e68d5f113b0e1182a73f13ef28c636f57e76e0f418cc9c3d512da77050b55bf9d5b4f994e6695ddf135390e |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
88a3c8c7371290e0a4d5a5da9697fd294978cc651371c102c83af5795249bfffa3b9dc3ed35b7ad3a0ffec30bb289e8240514adf008963840a9c9abef978d7d9 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
d07c638321adfe3ed251210503be40961bc9d7cd202b03ef489e4184ffcf9de9708bedc88692d8b79312a030a1a9e137723804b408e5c51fbe4dfa33ffd4d7f5 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
a27522a00fbf2de703b7c897eda6f35259833c6ebdad34fa5ca06d8f039b59cff1987a77ead15525fc943db22234c54a951c39f21ba04c6cba20e6c38f566892 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
5731f3fca15cae7a0778b51fd1fe2eac5384424397665a51e8b259bed52789f5909c4d49fa62c2c672a971c549d156087f7371e736e24c71ee97d6ff8b34fe11 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
24d942b642fb31598f456116dcd4c2ef5203640ab4431266deff216bcb5d5b5d7b8c3525b013d397ace924e46df6c09ed2ad675cd7f499152b491e34d0671691 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
e7a7199d72d6f6c3f9127fc9115a201df5700164162f1fba160f513e9a8dfb5d1d4a1ec7235112e6407138f65ea972b327380cc9dacc050e0fe0467ee661ad93 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
77704e3571dca17670dababaa2fede596605bac5ebf180230c2113bb9d77bc85428c51d6e862ca3225a21165f9ae7d8bb3f143f06fbe91e4ec3b31c25411d406 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
34de23c7c874eabd8a5a61412710ad7d6924a79ca829be3bcd57cbad8e9eed4b04cc1c21240629e9d1bd07dab03af3c28a2ce7e4e364be3f197b5cd79f3dfdb7 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
a09dc822a6660ff4701eaac4952ed7e2de29c24e6c6bf297f62c655d24cacf28c213fa0a8c436b4cbf3db7cd91804678037ae2a21cecc11bbf1e56444190e312 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
8e24754ec0a3166f8402aed38786b7b4a85f55ccbc6cb566b168e071bb2f7fc005075ccb9122e889786fa0be4cf4dc4b176c480b5c247b3f96a76fc0b4c49e5f |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
59fe66b21d8e8f8c57a38c21165a5e0ea33baa403e6791d89340873818e41376c945c6807cd03bfde19c97ca867e75f38bd5c2b12faa1e2af7332e7b84494e84 |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ffe65e87d8de873dbfbeba2acada0ea7a5227a5225e89fb254fb61c187ceb9df83fb7aa946d73e683c87223bae7c0ef8f0f011a1e30beb31e066e88a164f240c |
1 change: 1 addition & 0 deletions
1
internal/gnomockd/testdata/azurite/blobstore/some-bucket/file-6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
f5404950415a1d51601286904ca3b0edf5f4ec2bae9d3ab383f02275aa8d5c105e287e83e561d4dc8fd2ec7b25221993e91327aeae252741e4fe2c814e74e1a7 |
Oops, something went wrong.