123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- package main
- import (
- "fmt"
- "io/ioutil"
- "os"
- "os/exec"
- "strconv"
- "testing"
- "time"
- "github.com/bradleyjkemp/cupaloy"
- rpc "github.com/mikkeloscar/aur"
- "github.com/stretchr/testify/assert"
- alpm "github.com/Jguer/go-alpm/v2"
- "github.com/Jguer/yay/v10/pkg/db/mock"
- "github.com/Jguer/yay/v10/pkg/settings"
- "github.com/Jguer/yay/v10/pkg/upgrade"
- "github.com/Jguer/yay/v10/pkg/vcs"
- )
- func Test_upAUR(t *testing.T) {
- type args struct {
- remote []alpm.IPackage
- aurdata map[string]*rpc.Pkg
- timeUpdate bool
- }
- tests := []struct {
- name string
- args args
- want upgrade.UpSlice
- }{
- {
- name: "No Updates",
- args: args{
- remote: []alpm.IPackage{
- &mock.Package{PName: "hello", PVersion: "2.0.0"},
- &mock.Package{PName: "local_pkg", PVersion: "1.1.0"},
- &mock.Package{PName: "ignored", PVersion: "1.0.0", PShouldIgnore: true},
- },
- aurdata: map[string]*rpc.Pkg{
- "hello": {Version: "2.0.0", Name: "hello"},
- "ignored": {Version: "2.0.0", Name: "ignored"},
- },
- timeUpdate: false,
- },
- want: upgrade.UpSlice{},
- },
- {
- name: "Simple Update",
- args: args{
- remote: []alpm.IPackage{&mock.Package{PName: "hello", PVersion: "2.0.0"}},
- aurdata: map[string]*rpc.Pkg{"hello": {Version: "2.1.0", Name: "hello"}},
- timeUpdate: false,
- },
- want: upgrade.UpSlice{upgrade.Upgrade{Name: "hello", Repository: "aur", LocalVersion: "2.0.0", RemoteVersion: "2.1.0"}},
- },
- {
- name: "Time Update",
- args: args{
- remote: []alpm.IPackage{&mock.Package{PName: "hello", PVersion: "2.0.0", PBuildDate: time.Now()}},
- aurdata: map[string]*rpc.Pkg{"hello": {Version: "2.0.0", Name: "hello", LastModified: int(time.Now().AddDate(0, 0, 2).Unix())}},
- timeUpdate: true,
- },
- want: upgrade.UpSlice{upgrade.Upgrade{Name: "hello", Repository: "aur", LocalVersion: "2.0.0", RemoteVersion: "2.0.0"}},
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- rescueStdout := os.Stdout
- r, w, _ := os.Pipe()
- os.Stdout = w
- got := upAUR(tt.args.remote, tt.args.aurdata, tt.args.timeUpdate)
- assert.EqualValues(t, tt.want, got)
- w.Close()
- out, _ := ioutil.ReadAll(r)
- cupaloy.SnapshotT(t, out)
- os.Stdout = rescueStdout
- })
- }
- }
- type MockRunner struct {
- Returned []string
- Index int
- t *testing.T
- }
- func (r *MockRunner) Show(cmd *exec.Cmd) error {
- return nil
- }
- func (r *MockRunner) Capture(cmd *exec.Cmd, timeout int64) (stdout, stderr string, err error) {
- i, _ := strconv.Atoi(cmd.Args[len(cmd.Args)-1])
- if i >= len(r.Returned) {
- fmt.Println(r.Returned)
- fmt.Println(cmd.Args)
- fmt.Println(i)
- }
- stdout = r.Returned[i]
- assert.Contains(r.t, cmd.Args, "ls-remote")
- return stdout, stderr, err
- }
- func Test_upDevel(t *testing.T) {
- var err error
- config, err = settings.NewConfig()
- assert.NoError(t, err)
- config.Runtime.CmdRunner = &MockRunner{
- Returned: []string{
- "7f4c277ce7149665d1c79b76ca8fbb832a65a03b HEAD",
- "7f4c277ce7149665d1c79b76ca8fbb832a65a03b HEAD",
- "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa HEAD",
- "cccccccccccccccccccccccccccccccccccccccc HEAD",
- "991c5b4146fd27f4aacf4e3111258a848934aaa1 HEAD",
- },
- }
- type args struct {
- remote []alpm.IPackage
- aurdata map[string]*rpc.Pkg
- cached vcs.InfoStore
- }
- tests := []struct {
- name string
- args args
- want upgrade.UpSlice
- finalLen int
- }{
- {
- name: "No Updates",
- args: args{
- cached: vcs.InfoStore{
- Runner: config.Runtime.CmdRunner,
- CmdBuilder: config.Runtime.CmdBuilder,
- },
- remote: []alpm.IPackage{
- &mock.Package{PName: "hello", PVersion: "2.0.0"},
- &mock.Package{PName: "local_pkg", PVersion: "1.1.0"},
- &mock.Package{PName: "ignored", PVersion: "1.0.0", PShouldIgnore: true},
- },
- aurdata: map[string]*rpc.Pkg{
- "hello": {Version: "2.0.0", Name: "hello"},
- "ignored": {Version: "2.0.0", Name: "ignored"},
- },
- },
- want: upgrade.UpSlice{},
- },
- {
- name: "Simple Update",
- finalLen: 3,
- args: args{
- cached: vcs.InfoStore{
- Runner: config.Runtime.CmdRunner,
- CmdBuilder: config.Runtime.CmdBuilder,
- OriginsByPackage: map[string]vcs.OriginInfoByURL{
- "hello": {
- "github.com/Jguer/z.git": vcs.OriginInfo{
- Protocols: []string{"https"},
- Branch: "0",
- SHA: "991c5b4146fd27f4aacf4e3111258a848934aaa1",
- },
- },
- "hello-non-existant": {
- "github.com/Jguer/y.git": vcs.OriginInfo{
- Protocols: []string{"https"},
- Branch: "0",
- SHA: "991c5b4146fd27f4aacf4e3111258a848934aaa1",
- },
- },
- "hello2": {
- "github.com/Jguer/a.git": vcs.OriginInfo{
- Protocols: []string{"https"},
- Branch: "1",
- SHA: "7f4c277ce7149665d1c79b76ca8fbb832a65a03b",
- },
- },
- "hello4": {
- "github.com/Jguer/b.git": vcs.OriginInfo{
- Protocols: []string{"https"},
- Branch: "2",
- SHA: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
- },
- "github.com/Jguer/c.git": vcs.OriginInfo{
- Protocols: []string{"https"},
- Branch: "3",
- SHA: "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
- },
- },
- },
- },
- remote: []alpm.IPackage{
- &mock.Package{PName: "hello", PVersion: "2.0.0"},
- &mock.Package{PName: "hello2", PVersion: "3.0.0"},
- &mock.Package{PName: "hello4", PVersion: "4.0.0"},
- },
- aurdata: map[string]*rpc.Pkg{
- "hello": {Version: "2.0.0", Name: "hello"},
- "hello2": {Version: "2.0.0", Name: "hello2"},
- "hello4": {Version: "2.0.0", Name: "hello4"},
- },
- },
- want: upgrade.UpSlice{
- upgrade.Upgrade{
- Name: "hello",
- Repository: "devel",
- LocalVersion: "2.0.0",
- RemoteVersion: "latest-commit",
- },
- upgrade.Upgrade{
- Name: "hello4",
- Repository: "devel",
- LocalVersion: "4.0.0",
- RemoteVersion: "latest-commit",
- },
- },
- },
- {
- name: "No update returned",
- finalLen: 1,
- args: args{
- cached: vcs.InfoStore{
- Runner: config.Runtime.CmdRunner,
- CmdBuilder: config.Runtime.CmdBuilder,
- OriginsByPackage: map[string]vcs.OriginInfoByURL{
- "hello": {
- "github.com/Jguer/d.git": vcs.OriginInfo{
- Protocols: []string{"https"},
- Branch: "4",
- SHA: "991c5b4146fd27f4aacf4e3111258a848934aaa1",
- },
- },
- },
- },
- remote: []alpm.IPackage{&mock.Package{PName: "hello", PVersion: "2.0.0"}},
- aurdata: map[string]*rpc.Pkg{"hello": {Version: "2.0.0", Name: "hello"}},
- },
- want: upgrade.UpSlice{},
- },
- {
- name: "No update returned - ignored",
- finalLen: 1,
- args: args{
- cached: vcs.InfoStore{
- Runner: config.Runtime.CmdRunner,
- CmdBuilder: config.Runtime.CmdBuilder,
- OriginsByPackage: map[string]vcs.OriginInfoByURL{
- "hello": {
- "github.com/Jguer/e.git": vcs.OriginInfo{
- Protocols: []string{"https"},
- Branch: "3",
- SHA: "991c5b4146fd27f4aacf4e3111258a848934aaa1",
- },
- },
- },
- },
- remote: []alpm.IPackage{&mock.Package{PName: "hello", PVersion: "2.0.0", PShouldIgnore: true}},
- aurdata: map[string]*rpc.Pkg{"hello": {Version: "2.0.0", Name: "hello"}},
- },
- want: upgrade.UpSlice{},
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- config.Runtime.CmdRunner.(*MockRunner).t = t
- got := upDevel(tt.args.remote, tt.args.aurdata, &tt.args.cached)
- assert.ElementsMatch(t, tt.want, got)
- assert.Equal(t, tt.finalLen, len(tt.args.cached.OriginsByPackage))
- })
- }
- }
|