2018-10-12 14:24:00 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"crypto/md5"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
"github.com/ethereum/go-ethereum/log"
|
2019-02-07 13:38:32 +00:00
|
|
|
"github.com/ethereum/go-ethereum/metrics"
|
2018-10-12 14:24:00 +00:00
|
|
|
"github.com/ethereum/go-ethereum/swarm/storage/feed"
|
2019-02-07 13:38:32 +00:00
|
|
|
"github.com/ethereum/go-ethereum/swarm/testutil"
|
2018-10-29 09:00:00 +00:00
|
|
|
"github.com/pborman/uuid"
|
2018-10-12 14:24:00 +00:00
|
|
|
cli "gopkg.in/urfave/cli.v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
feedRandomDataLength = 8
|
|
|
|
)
|
|
|
|
|
2019-02-07 13:38:32 +00:00
|
|
|
func feedUploadAndSyncCmd(ctx *cli.Context, tuid string) error {
|
|
|
|
errc := make(chan error)
|
2018-10-12 14:24:00 +00:00
|
|
|
|
2019-02-07 13:38:32 +00:00
|
|
|
go func() {
|
|
|
|
errc <- feedUploadAndSync(ctx, tuid)
|
|
|
|
}()
|
2018-10-12 14:24:00 +00:00
|
|
|
|
2019-02-07 13:38:32 +00:00
|
|
|
select {
|
|
|
|
case err := <-errc:
|
|
|
|
if err != nil {
|
|
|
|
metrics.GetOrRegisterCounter(fmt.Sprintf("%s.fail", commandName), nil).Inc(1)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
case <-time.After(time.Duration(timeout) * time.Second):
|
|
|
|
metrics.GetOrRegisterCounter(fmt.Sprintf("%s.timeout", commandName), nil).Inc(1)
|
|
|
|
|
|
|
|
return fmt.Errorf("timeout after %v sec", timeout)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func feedUploadAndSync(c *cli.Context, tuid string) error {
|
|
|
|
log.Info("generating and uploading feeds to " + httpEndpoint(hosts[0]) + " and syncing")
|
2018-10-12 14:24:00 +00:00
|
|
|
|
|
|
|
// create a random private key to sign updates with and derive the address
|
|
|
|
pkFile, err := ioutil.TempFile("", "swarm-feed-smoke-test")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer pkFile.Close()
|
|
|
|
defer os.Remove(pkFile.Name())
|
|
|
|
|
|
|
|
privkeyHex := "0000000000000000000000000000000000000000000000000000000000001976"
|
|
|
|
privKey, err := crypto.HexToECDSA(privkeyHex)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
user := crypto.PubkeyToAddress(privKey.PublicKey)
|
|
|
|
userHex := hexutil.Encode(user.Bytes())
|
|
|
|
|
|
|
|
// save the private key to a file
|
|
|
|
_, err = io.WriteString(pkFile, privkeyHex)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// keep hex strings for topic and subtopic
|
|
|
|
var topicHex string
|
|
|
|
var subTopicHex string
|
|
|
|
|
|
|
|
// and create combination hex topics for bzz-feed retrieval
|
|
|
|
// xor'ed with topic (zero-value topic if no topic)
|
|
|
|
var subTopicOnlyHex string
|
|
|
|
var mergedSubTopicHex string
|
|
|
|
|
|
|
|
// generate random topic and subtopic and put a hex on them
|
|
|
|
topicBytes, err := generateRandomData(feed.TopicLength)
|
|
|
|
topicHex = hexutil.Encode(topicBytes)
|
|
|
|
subTopicBytes, err := generateRandomData(8)
|
|
|
|
subTopicHex = hexutil.Encode(subTopicBytes)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mergedSubTopic, err := feed.NewTopic(subTopicHex, topicBytes)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mergedSubTopicHex = hexutil.Encode(mergedSubTopic[:])
|
|
|
|
subTopicOnlyBytes, err := feed.NewTopic(subTopicHex, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
subTopicOnlyHex = hexutil.Encode(subTopicOnlyBytes[:])
|
|
|
|
|
|
|
|
// create feed manifest, topic only
|
|
|
|
var out bytes.Buffer
|
2019-02-07 13:38:32 +00:00
|
|
|
cmd := exec.Command("swarm", "--bzzapi", httpEndpoint(hosts[0]), "feed", "create", "--topic", topicHex, "--user", userHex)
|
2018-10-12 14:24:00 +00:00
|
|
|
cmd.Stdout = &out
|
|
|
|
log.Debug("create feed manifest topic cmd", "cmd", cmd)
|
|
|
|
err = cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
manifestWithTopic := strings.TrimRight(out.String(), string([]byte{0x0a}))
|
|
|
|
if len(manifestWithTopic) != 64 {
|
|
|
|
return fmt.Errorf("unknown feed create manifest hash format (topic): (%d) %s", len(out.String()), manifestWithTopic)
|
|
|
|
}
|
|
|
|
log.Debug("create topic feed", "manifest", manifestWithTopic)
|
|
|
|
out.Reset()
|
|
|
|
|
|
|
|
// create feed manifest, subtopic only
|
2019-02-07 13:38:32 +00:00
|
|
|
cmd = exec.Command("swarm", "--bzzapi", httpEndpoint(hosts[0]), "feed", "create", "--name", subTopicHex, "--user", userHex)
|
2018-10-12 14:24:00 +00:00
|
|
|
cmd.Stdout = &out
|
|
|
|
log.Debug("create feed manifest subtopic cmd", "cmd", cmd)
|
|
|
|
err = cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
manifestWithSubTopic := strings.TrimRight(out.String(), string([]byte{0x0a}))
|
|
|
|
if len(manifestWithSubTopic) != 64 {
|
|
|
|
return fmt.Errorf("unknown feed create manifest hash format (subtopic): (%d) %s", len(out.String()), manifestWithSubTopic)
|
|
|
|
}
|
|
|
|
log.Debug("create subtopic feed", "manifest", manifestWithTopic)
|
|
|
|
out.Reset()
|
|
|
|
|
|
|
|
// create feed manifest, merged topic
|
2019-02-07 13:38:32 +00:00
|
|
|
cmd = exec.Command("swarm", "--bzzapi", httpEndpoint(hosts[0]), "feed", "create", "--topic", topicHex, "--name", subTopicHex, "--user", userHex)
|
2018-10-12 14:24:00 +00:00
|
|
|
cmd.Stdout = &out
|
|
|
|
log.Debug("create feed manifest mergetopic cmd", "cmd", cmd)
|
|
|
|
err = cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err.Error())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
manifestWithMergedTopic := strings.TrimRight(out.String(), string([]byte{0x0a}))
|
|
|
|
if len(manifestWithMergedTopic) != 64 {
|
|
|
|
return fmt.Errorf("unknown feed create manifest hash format (mergedtopic): (%d) %s", len(out.String()), manifestWithMergedTopic)
|
|
|
|
}
|
|
|
|
log.Debug("create mergedtopic feed", "manifest", manifestWithMergedTopic)
|
|
|
|
out.Reset()
|
|
|
|
|
|
|
|
// create test data
|
|
|
|
data, err := generateRandomData(feedRandomDataLength)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
h := md5.New()
|
|
|
|
h.Write(data)
|
|
|
|
dataHash := h.Sum(nil)
|
|
|
|
dataHex := hexutil.Encode(data)
|
|
|
|
|
|
|
|
// update with topic
|
2019-02-07 13:38:32 +00:00
|
|
|
cmd = exec.Command("swarm", "--bzzaccount", pkFile.Name(), "--bzzapi", httpEndpoint(hosts[0]), "feed", "update", "--topic", topicHex, dataHex)
|
2018-10-12 14:24:00 +00:00
|
|
|
cmd.Stdout = &out
|
|
|
|
log.Debug("update feed manifest topic cmd", "cmd", cmd)
|
|
|
|
err = cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Debug("feed update topic", "out", out)
|
|
|
|
out.Reset()
|
|
|
|
|
|
|
|
// update with subtopic
|
2019-02-07 13:38:32 +00:00
|
|
|
cmd = exec.Command("swarm", "--bzzaccount", pkFile.Name(), "--bzzapi", httpEndpoint(hosts[0]), "feed", "update", "--name", subTopicHex, dataHex)
|
2018-10-12 14:24:00 +00:00
|
|
|
cmd.Stdout = &out
|
|
|
|
log.Debug("update feed manifest subtopic cmd", "cmd", cmd)
|
|
|
|
err = cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Debug("feed update subtopic", "out", out)
|
|
|
|
out.Reset()
|
|
|
|
|
|
|
|
// update with merged topic
|
2019-02-07 13:38:32 +00:00
|
|
|
cmd = exec.Command("swarm", "--bzzaccount", pkFile.Name(), "--bzzapi", httpEndpoint(hosts[0]), "feed", "update", "--topic", topicHex, "--name", subTopicHex, dataHex)
|
2018-10-12 14:24:00 +00:00
|
|
|
cmd.Stdout = &out
|
|
|
|
log.Debug("update feed manifest merged topic cmd", "cmd", cmd)
|
|
|
|
err = cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Debug("feed update mergedtopic", "out", out)
|
|
|
|
out.Reset()
|
|
|
|
|
|
|
|
time.Sleep(3 * time.Second)
|
|
|
|
|
|
|
|
// retrieve the data
|
|
|
|
wg := sync.WaitGroup{}
|
2019-02-07 13:38:32 +00:00
|
|
|
for _, host := range hosts {
|
2018-10-12 14:24:00 +00:00
|
|
|
// raw retrieve, topic only
|
|
|
|
for _, hex := range []string{topicHex, subTopicOnlyHex, mergedSubTopicHex} {
|
|
|
|
wg.Add(1)
|
|
|
|
ruid := uuid.New()[:8]
|
2018-10-29 09:00:00 +00:00
|
|
|
go func(hex string, endpoint string, ruid string) {
|
2018-10-12 14:24:00 +00:00
|
|
|
for {
|
2019-02-07 13:38:32 +00:00
|
|
|
err := fetchFeed(hex, userHex, httpEndpoint(host), dataHash, ruid)
|
2018-10-12 14:24:00 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Done()
|
|
|
|
return
|
|
|
|
}
|
2019-02-07 13:38:32 +00:00
|
|
|
}(hex, httpEndpoint(host), ruid)
|
2018-10-12 14:24:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
log.Info("all endpoints synced random data successfully")
|
|
|
|
|
|
|
|
// upload test file
|
2019-02-07 13:38:32 +00:00
|
|
|
log.Info("feed uploading to "+httpEndpoint(hosts[0])+" and syncing", "seed", seed)
|
2018-10-12 14:24:00 +00:00
|
|
|
|
2019-02-07 13:38:32 +00:00
|
|
|
randomBytes := testutil.RandomBytes(seed, filesize*1000)
|
2018-10-12 14:24:00 +00:00
|
|
|
|
2019-02-07 13:38:32 +00:00
|
|
|
hash, err := upload(randomBytes, httpEndpoint(hosts[0]))
|
2018-10-12 14:24:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
hashBytes, err := hexutil.Decode("0x" + hash)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-11-26 15:10:22 +00:00
|
|
|
multihashHex := hexutil.Encode(hashBytes)
|
2019-01-30 08:46:44 +00:00
|
|
|
fileHash := h.Sum(nil)
|
2018-10-12 14:24:00 +00:00
|
|
|
|
|
|
|
log.Info("uploaded successfully", "hash", hash, "digest", fmt.Sprintf("%x", fileHash))
|
|
|
|
|
|
|
|
// update file with topic
|
2019-02-07 13:38:32 +00:00
|
|
|
cmd = exec.Command("swarm", "--bzzaccount", pkFile.Name(), "--bzzapi", httpEndpoint(hosts[0]), "feed", "update", "--topic", topicHex, multihashHex)
|
2018-10-12 14:24:00 +00:00
|
|
|
cmd.Stdout = &out
|
|
|
|
err = cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Debug("feed update topic", "out", out)
|
|
|
|
out.Reset()
|
|
|
|
|
|
|
|
// update file with subtopic
|
2019-02-07 13:38:32 +00:00
|
|
|
cmd = exec.Command("swarm", "--bzzaccount", pkFile.Name(), "--bzzapi", httpEndpoint(hosts[0]), "feed", "update", "--name", subTopicHex, multihashHex)
|
2018-10-12 14:24:00 +00:00
|
|
|
cmd.Stdout = &out
|
|
|
|
err = cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Debug("feed update subtopic", "out", out)
|
|
|
|
out.Reset()
|
|
|
|
|
|
|
|
// update file with merged topic
|
2019-02-07 13:38:32 +00:00
|
|
|
cmd = exec.Command("swarm", "--bzzaccount", pkFile.Name(), "--bzzapi", httpEndpoint(hosts[0]), "feed", "update", "--topic", topicHex, "--name", subTopicHex, multihashHex)
|
2018-10-12 14:24:00 +00:00
|
|
|
cmd.Stdout = &out
|
|
|
|
err = cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Debug("feed update mergedtopic", "out", out)
|
|
|
|
out.Reset()
|
|
|
|
|
|
|
|
time.Sleep(3 * time.Second)
|
|
|
|
|
2019-02-07 13:38:32 +00:00
|
|
|
for _, host := range hosts {
|
2018-10-12 14:24:00 +00:00
|
|
|
|
|
|
|
// manifest retrieve, topic only
|
|
|
|
for _, url := range []string{manifestWithTopic, manifestWithSubTopic, manifestWithMergedTopic} {
|
|
|
|
wg.Add(1)
|
|
|
|
ruid := uuid.New()[:8]
|
2018-10-29 09:00:00 +00:00
|
|
|
go func(url string, endpoint string, ruid string) {
|
2018-10-12 14:24:00 +00:00
|
|
|
for {
|
2019-02-07 13:38:32 +00:00
|
|
|
err := fetch(url, endpoint, fileHash, ruid, "")
|
2018-10-12 14:24:00 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Done()
|
|
|
|
return
|
|
|
|
}
|
2019-02-07 13:38:32 +00:00
|
|
|
}(url, httpEndpoint(host), ruid)
|
2018-10-12 14:24:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
log.Info("all endpoints synced random file successfully")
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|