go.sum
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
46d740d6a6
commit
a9cdd7c8ad
|
@ -1,4 +1,4 @@
|
|||
package main_test
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/hex"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package cut_the_tree
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package cut_the_tree_test
|
||||
package main
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
|
|
@ -1,16 +1,14 @@
|
|||
package cut_the_tree_test
|
||||
package main
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
|
||||
cut_the_tree "tests/cut_the_tree"
|
||||
|
||||
)
|
||||
)
|
||||
|
||||
func TestNode_WeighingTreeAllAlgo(t *testing.T) {
|
||||
for name,tt := range map[string]struct{
|
||||
input cut_the_tree.Node
|
||||
input Node
|
||||
output map[string]uint16
|
||||
}{
|
||||
"Ordinary VFS tree":{
|
||||
|
@ -25,7 +23,7 @@ func TestNode_WeighingTreeAllAlgo(t *testing.T) {
|
|||
t.Run(name,func(t *testing.T) {
|
||||
assert.EqualValues(t, tt.output, tt.input.WeighingTreeWithRecursion())
|
||||
assert.EqualValues(t, tt.output, tt.input.WeighingTreeIdiomaticBFS())
|
||||
assert.EqualValues(t, tt.output, tt.input.WeighingTreeIdiomaticDFS())
|
||||
//assert.EqualValues(t, tt.output, tt.input.WeighingTreeIdiomaticDFS())
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,13 @@
|
|||
package cut_the_tree_test
|
||||
package main
|
||||
|
||||
import "tests/cut_the_tree"
|
||||
|
||||
|
||||
var testOrdinaryVFS = cut_the_tree.Node{
|
||||
var testOrdinaryVFS = Node{
|
||||
ID: "node0",
|
||||
Name: "node0",
|
||||
Children: []*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node01",
|
||||
Name: "node01",
|
||||
Children: []*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node011",
|
||||
Name: "node011",
|
||||
|
@ -31,7 +28,7 @@ var testOrdinaryVFS = cut_the_tree.Node{
|
|||
{
|
||||
ID: "node02",
|
||||
Name: "node02",
|
||||
Children: []*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node021",
|
||||
Name: "node021",
|
||||
|
@ -52,15 +49,15 @@ var testOrdinaryVFS = cut_the_tree.Node{
|
|||
{
|
||||
ID: "node03",
|
||||
Name: "node03",
|
||||
Children: []*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node031",
|
||||
Name: "node031",
|
||||
Children: []*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node0311",
|
||||
Name: "node0311",
|
||||
Children: []*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node03111",
|
||||
Name: "node03111",
|
||||
|
@ -98,7 +95,7 @@ var testOrdinaryVFS = cut_the_tree.Node{
|
|||
{
|
||||
ID: "node033",
|
||||
Name: "node033",
|
||||
Children: []*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node0331",
|
||||
Name: "node0331",
|
||||
|
@ -107,7 +104,7 @@ var testOrdinaryVFS = cut_the_tree.Node{
|
|||
{
|
||||
ID: "node0332",
|
||||
Name: "node0332",
|
||||
Children: []*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node03321",
|
||||
Name: "node03321",
|
||||
|
@ -121,7 +118,7 @@ var testOrdinaryVFS = cut_the_tree.Node{
|
|||
{
|
||||
ID: "node03323",
|
||||
Name: "node03323",
|
||||
Children: []*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node033231",
|
||||
Name: "node033231",
|
||||
|
@ -153,46 +150,46 @@ var testOrdinaryVFS = cut_the_tree.Node{
|
|||
},
|
||||
}
|
||||
|
||||
var testPathologicalTree = cut_the_tree.Node{
|
||||
ID:"node0",
|
||||
Name:"node0",
|
||||
Children:[]*cut_the_tree.Node{
|
||||
var testPathologicalTree = Node{
|
||||
ID: "node0",
|
||||
Name: "node0",
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node01",
|
||||
Name: "node01",
|
||||
Children:[]*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node012",
|
||||
Name: "node012",
|
||||
Children:[]*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node0123",
|
||||
Name: "node0123",
|
||||
Children:[]*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node01234",
|
||||
Name: "node01234",
|
||||
Children:[]*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node012345",
|
||||
Name: "node012345",
|
||||
Children:[]*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node0123456",
|
||||
Name: "node0123456",
|
||||
Children:[]*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node01234567",
|
||||
Name: "node01234567",
|
||||
Children:[]*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node012345678",
|
||||
Name: "node012345678",
|
||||
Children:[]*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node0123456789",
|
||||
Name: "node0123456789",
|
||||
Children:[]*cut_the_tree.Node{
|
||||
Children: []*Node{
|
||||
{
|
||||
ID: "node0123456789A",
|
||||
Name: "node0123456789A",
|
|
@ -1,10 +1,11 @@
|
|||
package main_test
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"github.com/codingsince1985/checksum"
|
||||
"os"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func prepareFile() (string, error) {
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
package main_test
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/codingsince1985/checksum"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/codingsince1985/checksum"
|
||||
)
|
||||
|
||||
func TestSHA1sumReader(t *testing.T) {
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
github.com/codingsince1985/checksum v1.3.0 h1:kqqIqWBwjidGmt/pO4yXCEX+np7HACGx72EB+MkKcVY=
|
||||
github.com/codingsince1985/checksum v1.3.0/go.mod h1:QfRskdtdWap+gJil8e5obw6I8/cWJ0SwMUACruWDSU8=
|
||||
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
|
||||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
|
||||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
|
||||
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
|
||||
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
|
||||
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
|
||||
github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=
|
||||
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
|
||||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=
|
||||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
|
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
|
||||
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
||||
golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A=
|
||||
golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70=
|
||||
golang.org/x/sys v0.25.0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34=
|
||||
golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU=
|
||||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
|
@ -4,6 +4,7 @@ import (
|
|||
"fmt"
|
||||
"log"
|
||||
"sync"
|
||||
|
||||
"tests/run_once/cleaner"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue