Modify CI
continuous-integration/drone/push Build is failing Details

main
Андрей Иванов 2024-09-11 10:32:06 +03:00
parent 233143f90c
commit 052aa0aa16
7 changed files with 15 additions and 53 deletions

View File

@ -3,12 +3,11 @@ type: docker
name: pipeline
steps:
- name: lint
image: golangci/golangci-lint:v1.61.0-alpine
- name: simple tests
image: golang:1.22.7
commands:
- golangci-lint run --config=./golangci.yml ./...
- name: test with race and cover
- go test ./...
- name: race tests
image: golang:1.22.7
commands:
- go test -race -count 100 -timeout 30s ./...

View File

@ -2,12 +2,12 @@
tools: # Устанавливает бинарки для тулзов: linter, mockgen, etc.
cd tools && go mod tidy && go mod verify && go generate -tags tools && chmod +x ../bin/*
.PHONY: lint
lint: tools # Линт на отличия от мастера
./bin/golangci-lint run --config=./golangci.yml ./...
.PHONY: test
test:
go test ./...
.PHONY: race
race:
go test -race -count 100 -timeout 30s ./...
help: ## Print this help and exit

View File

@ -25,7 +25,8 @@ func Test(t *testing.T) {
}
require.NoError(t, json.Unmarshal(jsonFromString, &structFromJson))
// строку в байты
bytesFromString := []byte(structFromJson.Msg)
bytesFromString, err := hex.DecodeString(structFromJson.Msg)
require.NoError(t, err)
require.Equal(t, bitesOriginal, bytesFromString)
require.Equal(t, stringFromBytes, structFromJson.Msg)

View File

@ -192,7 +192,7 @@ func Call(method *string, args Args) {
log.Printf("Method response: %#v", resp)
default:
log.Fatalf("unknown method: %s", method)
log.Fatalf("unknown method: %s", *method)
}
log.Print("command applied successfully")
}

Binary file not shown.

View File

@ -3,6 +3,7 @@ package main
import (
"errors"
"html/template"
"log"
"net/http"
"net/url"
)
@ -36,7 +37,9 @@ func main() {
}
http.HandleFunc("/", handler)
http.ListenAndServe(":3000", nil)
if err = http.ListenAndServe(":3000", nil); err != nil {
log.Println("server stopped")
}
}
func handler(w http.ResponseWriter, r *http.Request) {

View File

@ -1,41 +0,0 @@
package main
import (
"encoding/json"
"github.com/spf13/cast"
"log"
)
type msg struct {
Field1 string `json:"field1"`
Extra map[string]interface{} `json:"extra"`
}
func main() {
teststring := `{"field1":"dafdaf","extra":{"uids":[1,2,3,4,5,6,7,8]}}`
var task msg
if err := json.Unmarshal([]byte(teststring), &task); err != nil {
log.Fatal("unmarshall")
}
log.Printf("%#v", task)
uidsUntyped, ok := task.Extra["uids"]
log.Printf("%#v", uidsUntyped)
if !ok {
log.Fatal("unmap")
}
uids, ok := uidsUntyped.([]uint64)
log.Printf("%#v", uids)
uid, _ := cast.ToUint64E(uidI)
if !ok {
log.Print(uids)
log.Fatal("cast")
}
log.Print(uids)
}