WIP: HTTP-01 solver that stores challenge tokens in FrostFS #4

Draft
potyarkin wants to merge 9 commits from potyarkin/lego:feature/http-01-frostfs-solver into tcl/http-01-frostfs-solver
Showing only changes of commit 23e60f1e98 - Show all commits

View file

@ -9,22 +9,22 @@ import (
"crypto/ecdsa" "crypto/ecdsa"
"crypto/elliptic" "crypto/elliptic"
"crypto/rand" "crypto/rand"
"os"
"sync" "sync"
) )
// Initialize storage backend for tests
func openStorage(t *testing.T) *Storage { func openStorage(t *testing.T) *Storage {
const ( cid := os.Getenv("FROSTFS_CID") // example: 348WWfBKbS79Wbmm38MRE3oBoEDM5Ga1XXbGKGNyisDM
cid_hardcoded = "348WWfBKbS79Wbmm38MRE3oBoEDM5Ga1XXbGKGNyisDM" endpoint := os.Getenv("FROSTFS_ENDPOINT") // example: grpc://localhost:8802
endpoint_hardcoded = "grpc://localhost:8802" if cid == "" || endpoint == "" {
) t.Skipf("one or more environment variables not set: FROSTFS_ENDPOINT, FROSTFS_CID")
}
// We will use an ephemeral key to write to publicly writable container key, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader) // TODO: using ephemeral keys for now, later read from env vars
key, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
storage, err := Open(endpoint, cid, key)
storage, err := Open(endpoint_hardcoded, cid_hardcoded, key)
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }