summaryrefslogtreecommitdiff
path: root/pkgtools/pkglint/files/distinfo_test.go
blob: 653142c3146fb22e7bd70f36005a20af0ee86b2a (plain)
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
package main

import (
	check "gopkg.in/check.v1"
	"io/ioutil"
	"os"
	"path/filepath"
)

func (s *Suite) TestChecklinesDistinfo(c *check.C) {
	tmpdir := c.MkDir()
	patchesdir := tmpdir + "/patches"
	patchAa := patchesdir + "/patch-aa"
	patchContents := "" +
		"$" + "NetBSD$ line is ignored\n" +
		"patch contents\n"

	os.Mkdir(patchesdir, 0777)
	if err := ioutil.WriteFile(patchAa, []byte(patchContents), 0666); err != nil {
		c.Fatal(err)
	}
	G.currentDir = filepath.ToSlash(tmpdir)

	lines := s.NewLines("distinfo",
		"should be the RCS ID",
		"should be empty",
		"MD5 (distfile.tar.gz) = 12345678901234567890123456789012",
		"SHA1 (distfile.tar.gz) = 1234567890123456789012345678901234567890",
		"SHA1 (patch-aa) = 6b98dd609f85a9eb9c4c1e4e7055a6aaa62b7cc7")

	checklinesDistinfo(lines)

	c.Check(s.Output(), equals, ""+
		"ERROR: distinfo:1: Expected \"$"+"NetBSD$\".\n"+
		"NOTE: distinfo:2: Empty line expected.\n"+
		"ERROR: distinfo:5: Expected SHA1, RMD160, SHA512, Size checksums for \"distfile.tar.gz\", got MD5, SHA1.\n")
}