aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/swarm/swarm-smoke/util.go
blob: 588af39c77236e8d9f98f570ab7ffb42b0e7d374 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
// Copyright 2018 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.

package main

import (
    "bytes"
    "context"
    "crypto/md5"
    crand "crypto/rand"
    "errors"
    "fmt"
    "io"
    "io/ioutil"
    "math/rand"
    "net/http"
    "net/http/httptrace"
    "os"
    "strings"
    "time"

    "github.com/dexon-foundation/dexon/log"
    "github.com/dexon-foundation/dexon/metrics"
    "github.com/dexon-foundation/dexon/swarm/api"
    "github.com/dexon-foundation/dexon/swarm/api/client"
    "github.com/dexon-foundation/dexon/swarm/spancontext"
    opentracing "github.com/opentracing/opentracing-go"
    "github.com/pborman/uuid"
    cli "gopkg.in/urfave/cli.v1"
)

var (
    commandName = ""
    seed        = int(time.Now().UTC().UnixNano())
)

func init() {
    rand.Seed(int64(seed))
}

func httpEndpoint(host string) string {
    return fmt.Sprintf("http://%s:%d", host, httpPort)
}

func wsEndpoint(host string) string {
    return fmt.Sprintf("ws://%s:%d", host, wsPort)
}

func wrapCliCommand(name string, command func(*cli.Context, string) error) func(*cli.Context) error {
    return func(ctx *cli.Context) error {
        log.PrintOrigins(true)
        log.Root().SetHandler(log.LvlFilterHandler(log.Lvl(verbosity), log.StreamHandler(os.Stdout, log.TerminalFormat(false))))

        // test uuid
        tuid := uuid.New()[:8]

        commandName = name

        hosts = strings.Split(allhosts, ",")

        defer func(now time.Time) {
            totalTime := time.Since(now)
            log.Info("total time", "tuid", tuid, "time", totalTime, "kb", filesize)
            metrics.GetOrRegisterResettingTimer(name+".total-time", nil).Update(totalTime)
        }(time.Now())

        log.Info("smoke test starting", "tuid", tuid, "task", name, "timeout", timeout)
        metrics.GetOrRegisterCounter(name, nil).Inc(1)

        return command(ctx, tuid)
    }
}

func fetchFeed(topic string, user string, endpoint string, original []byte, ruid string) error {
    ctx, sp := spancontext.StartSpan(context.Background(), "feed-and-sync.fetch")
    defer sp.Finish()

    log.Trace("sleeping", "ruid", ruid)
    time.Sleep(3 * time.Second)

    log.Trace("http get request (feed)", "ruid", ruid, "api", endpoint, "topic", topic, "user", user)

    var tn time.Time
    reqUri := endpoint + "/bzz-feed:/?topic=" + topic + "&user=" + user
    req, _ := http.NewRequest("GET", reqUri, nil)

    opentracing.GlobalTracer().Inject(
        sp.Context(),
        opentracing.HTTPHeaders,
        opentracing.HTTPHeadersCarrier(req.Header))

    trace := client.GetClientTrace("feed-and-sync - http get", "feed-and-sync", ruid, &tn)

    req = req.WithContext(httptrace.WithClientTrace(ctx, trace))
    transport := http.DefaultTransport

    //transport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}

    tn = time.Now()
    res, err := transport.RoundTrip(req)
    if err != nil {
        log.Error(err.Error(), "ruid", ruid)
        return err
    }

    log.Trace("http get response (feed)", "ruid", ruid, "api", endpoint, "topic", topic, "user", user, "code", res.StatusCode, "len", res.ContentLength)

    if res.StatusCode != 200 {
        return fmt.Errorf("expected status code %d, got %v (ruid %v)", 200, res.StatusCode, ruid)
    }

    defer res.Body.Close()

    rdigest, err := digest(res.Body)
    if err != nil {
        log.Warn(err.Error(), "ruid", ruid)
        return err
    }

    if !bytes.Equal(rdigest, original) {
        err := fmt.Errorf("downloaded imported file md5=%x is not the same as the generated one=%x", rdigest, original)
        log.Warn(err.Error(), "ruid", ruid)
        return err
    }

    log.Trace("downloaded file matches random file", "ruid", ruid, "len", res.ContentLength)

    return nil
}

// fetch is getting the requested `hash` from the `endpoint` and compares it with the `original` file
func fetch(hash string, endpoint string, original []byte, ruid string, tuid string) error {
    ctx, sp := spancontext.StartSpan(context.Background(), "upload-and-sync.fetch")
    defer sp.Finish()

    log.Info("http get request", "tuid", tuid, "ruid", ruid, "endpoint", endpoint, "hash", hash)

    var tn time.Time
    reqUri := endpoint + "/bzz:/" + hash + "/"
    req, _ := http.NewRequest("GET", reqUri, nil)

    opentracing.GlobalTracer().Inject(
        sp.Context(),
        opentracing.HTTPHeaders,
        opentracing.HTTPHeadersCarrier(req.Header))

    trace := client.GetClientTrace(commandName+" - http get", commandName, ruid, &tn)

    req = req.WithContext(httptrace.WithClientTrace(ctx, trace))
    transport := http.DefaultTransport

    //transport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}

    tn = time.Now()
    res, err := transport.RoundTrip(req)
    if err != nil {
        log.Error(err.Error(), "ruid", ruid)
        return err
    }
    log.Info("http get response", "tuid", tuid, "ruid", ruid, "endpoint", endpoint, "hash", hash, "code", res.StatusCode, "len", res.ContentLength)

    if res.StatusCode != 200 {
        err := fmt.Errorf("expected status code %d, got %v", 200, res.StatusCode)
        log.Warn(err.Error(), "ruid", ruid)
        return err
    }

    defer res.Body.Close()

    rdigest, err := digest(res.Body)
    if err != nil {
        log.Warn(err.Error(), "ruid", ruid)
        return err
    }

    if !bytes.Equal(rdigest, original) {
        err := fmt.Errorf("downloaded imported file md5=%x is not the same as the generated one=%x", rdigest, original)
        log.Warn(err.Error(), "ruid", ruid)
        return err
    }

    log.Trace("downloaded file matches random file", "ruid", ruid, "len", res.ContentLength)

    return nil
}

// upload an arbitrary byte as a plaintext file  to `endpoint` using the api client
func upload(data []byte, endpoint string) (string, error) {
    swarm := client.NewClient(endpoint)
    f := &client.File{
        ReadCloser: ioutil.NopCloser(bytes.NewReader(data)),
        ManifestEntry: api.ManifestEntry{
            ContentType: "text/plain",
            Mode:        0660,
            Size:        int64(len(data)),
        },
    }

    // upload data to bzz:// and retrieve the content-addressed manifest hash, hex-encoded.
    return swarm.Upload(f, "", false)
}

func digest(r io.Reader) ([]byte, error) {
    h := md5.New()
    _, err := io.Copy(h, r)
    if err != nil {
        return nil, err
    }
    return h.Sum(nil), nil
}

// generates random data in heap buffer
func generateRandomData(datasize int) ([]byte, error) {
    b := make([]byte, datasize)
    c, err := crand.Read(b)
    if err != nil {
        return nil, err
    } else if c != datasize {
        return nil, errors.New("short read")
    }
    return b, nil
}