-
Notifications
You must be signed in to change notification settings - Fork 11
/
torrent_test.go
71 lines (60 loc) · 1.92 KB
/
torrent_test.go
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
package libtorrent
// import (
// //"bytes"
// //"fmt"
// //"io"
// "io/ioutil"
// //"net"
// "os"
// "testing"
// )
// func loadTorrentFile(t *testing.T) *os.File {
// torrentFile, err := os.Open("testData/test.txt.torrent")
// if err != nil {
// t.Fatal("Could not open torrent file: ", err)
// }
// return torrentFile
// }
// func TestNewTorrent(t *testing.T) {
// torrentFile := loadTorrentFile(t)
// tmpDir, err := ioutil.TempDir("", "libtorrentTesting")
// if err != nil {
// t.Fatal("Could not create temporary directory to run tests: ", err)
// }
// defer os.RemoveAll(tmpDir)
// config := &Config{RootDirectory: tmpDir}
// _, err = NewTorrent(torrentFile, config)
// if err != nil {
// t.Error("Could not create torrent from valid metainfo file: ", err)
// }
// }
//func TestAgainstTransmission(t *testing.T) {
// torrentFile := loadTorrentFile(t)
// tmpDir, err := ioutil.TempDir("", "libtorrentTesting")
// if err != nil {
// t.Fatal("Could not create temporary directory to run tests: ", err)
// }
// defer os.RemoveAll(tmpDir)
// testFile, _ := os.Create(tmpDir + string(os.PathSeparator) + "test.txt")
// originalFile, _ := os.Open("testData/test.txt")
// io.Copy(testFile, originalFile)
// config := &Config{RootDirectory: tmpDir}
// tor, err := NewTorrent(torrentFile, config)
// if err != nil {
// t.Fatal("Could not create torrent from valid metainfo file: ", err)
// }
// if !bytes.Equal(tor.bitf, []byte{0xC0}) {
// t.Fatalf("Torrent data was not loaded and validated, got: %#x", tor.bitf)
// }
// conn, err := net.Dial("tcp", "localhost:51413")
// if err != nil {
// t.Fatal("Failed to create connection: ", err)
// }
// newHandshake(tor.getInfoHash()).BinaryDump(conn)
// parseHandshake([][]byte{tor.getInfoHash()}, conn)
// p := newPeer("transmission", conn)
// p.write <- &bitfieldMessage{bitf: tor.bitf}
// tor.swarm = append(tor.swarm, p)
// fmt.Println("Starting torrent...")
// tor.start()
//}