2019-11-02 16:56:43 +00:00
|
|
|
// Copyright © 2019 Ettore Di Giacinto <mudler@gentoo.org>
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
package database_test
|
2019-11-02 16:56:43 +00:00
|
|
|
|
|
|
|
import (
|
2022-01-06 22:57:56 +00:00
|
|
|
"github.com/mudler/luet/pkg/api/core/types"
|
|
|
|
|
|
|
|
. "github.com/mudler/luet/pkg/database"
|
2021-12-31 20:01:40 +00:00
|
|
|
. "github.com/onsi/ginkgo/v2"
|
2019-11-02 16:56:43 +00:00
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Database", func() {
|
|
|
|
|
|
|
|
db := NewInMemoryDatabase(false)
|
|
|
|
Context("Simple package", func() {
|
2022-01-06 22:57:56 +00:00
|
|
|
a := types.NewPackage("A", ">=1.0", []*types.Package{}, []*types.Package{})
|
|
|
|
// a1 := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
|
|
|
// a11 := types.NewPackage("A", "1.1", []*types.Package{}, []*types.Package{})
|
|
|
|
// a01 := types.NewPackage("A", "0.1", []*types.Package{}, []*types.Package{})
|
2019-11-02 16:56:43 +00:00
|
|
|
It("Saves and get data back correctly", func() {
|
|
|
|
|
|
|
|
ID, err := db.CreatePackage(a)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
pack, err := db.GetPackage(ID)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
Expect(pack).To(Equal(a))
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Gets all", func() {
|
|
|
|
|
|
|
|
ids := db.GetPackages()
|
|
|
|
|
2019-12-06 15:30:20 +00:00
|
|
|
Expect(ids).To(Equal([]string{"A-->=1.0"}))
|
2019-11-02 16:56:43 +00:00
|
|
|
|
|
|
|
})
|
|
|
|
It("Find packages", func() {
|
|
|
|
|
|
|
|
pack, err := db.FindPackage(a)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(pack).To(Equal(a))
|
|
|
|
|
|
|
|
})
|
2019-12-01 20:26:50 +00:00
|
|
|
|
|
|
|
It("Find best package candidate", func() {
|
|
|
|
db := NewInMemoryDatabase(false)
|
2022-01-06 22:57:56 +00:00
|
|
|
a := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
|
|
|
a1 := types.NewPackage("A", "1.1", []*types.Package{}, []*types.Package{})
|
|
|
|
a3 := types.NewPackage("A", "1.3", []*types.Package{}, []*types.Package{})
|
2019-12-01 20:26:50 +00:00
|
|
|
_, err := db.CreatePackage(a)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
_, err = db.CreatePackage(a1)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
_, err = db.CreatePackage(a3)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
2022-01-06 22:57:56 +00:00
|
|
|
s := types.NewPackage("A", ">=1.0", []*types.Package{}, []*types.Package{})
|
2019-12-01 20:26:50 +00:00
|
|
|
|
|
|
|
pack, err := db.FindPackageCandidate(s)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(pack).To(Equal(a3))
|
|
|
|
|
|
|
|
})
|
2019-12-17 18:32:31 +00:00
|
|
|
|
2021-03-06 16:22:01 +00:00
|
|
|
It("Find package files", func() {
|
|
|
|
db := NewInMemoryDatabase(false)
|
2022-01-06 22:57:56 +00:00
|
|
|
a := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
|
|
|
a1 := types.NewPackage("A", "1.1", []*types.Package{}, []*types.Package{})
|
|
|
|
a3 := types.NewPackage("A", "1.3", []*types.Package{}, []*types.Package{})
|
2021-03-06 16:22:01 +00:00
|
|
|
_, err := db.CreatePackage(a)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
_, err = db.CreatePackage(a1)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
_, err = db.CreatePackage(a3)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
err = db.SetPackageFiles(&types.PackageFile{PackageFingerprint: a.GetFingerPrint(), Files: []string{"foo"}})
|
2021-03-06 16:22:01 +00:00
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
err = db.SetPackageFiles(&types.PackageFile{PackageFingerprint: a1.GetFingerPrint(), Files: []string{"bar"}})
|
2021-03-06 16:22:01 +00:00
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
pack, err := db.FindPackageByFile("fo")
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(len(pack)).To(Equal(1))
|
|
|
|
Expect(pack[0]).To(Equal(a))
|
|
|
|
})
|
|
|
|
|
2020-01-01 21:55:19 +00:00
|
|
|
It("Find specific package candidate", func() {
|
|
|
|
db := NewInMemoryDatabase(false)
|
2022-01-06 22:57:56 +00:00
|
|
|
a := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
|
|
|
a1 := types.NewPackage("A", "1.1", []*types.Package{}, []*types.Package{})
|
|
|
|
a3 := types.NewPackage("A", "1.3", []*types.Package{}, []*types.Package{})
|
2020-01-01 21:55:19 +00:00
|
|
|
_, err := db.CreatePackage(a)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
_, err = db.CreatePackage(a1)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
_, err = db.CreatePackage(a3)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
2022-01-06 22:57:56 +00:00
|
|
|
s := types.NewPackage("A", "=1.0", []*types.Package{}, []*types.Package{})
|
2020-01-01 21:55:19 +00:00
|
|
|
|
|
|
|
pack, err := db.FindPackageCandidate(s)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(pack).To(Equal(a))
|
|
|
|
|
|
|
|
})
|
|
|
|
|
2020-12-16 21:17:13 +00:00
|
|
|
Context("Provides", func() {
|
2019-12-17 18:32:31 +00:00
|
|
|
|
2020-12-16 21:17:13 +00:00
|
|
|
It("replaces definitions", func() {
|
|
|
|
db := NewInMemoryDatabase(false)
|
2022-01-06 22:57:56 +00:00
|
|
|
a := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
|
|
|
a1 := types.NewPackage("A", "1.1", []*types.Package{}, []*types.Package{})
|
|
|
|
a3 := types.NewPackage("A", "1.3", []*types.Package{}, []*types.Package{})
|
2019-12-17 18:32:31 +00:00
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
a3.SetProvides([]*types.Package{{Name: "A", Category: "", Version: "1.0"}})
|
|
|
|
Expect(a3.GetProvides()).To(Equal([]*types.Package{{Name: "A", Category: "", Version: "1.0"}}))
|
2019-12-17 18:32:31 +00:00
|
|
|
|
2020-12-16 21:17:13 +00:00
|
|
|
_, err := db.CreatePackage(a)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
2019-12-17 18:32:31 +00:00
|
|
|
|
2020-12-16 21:17:13 +00:00
|
|
|
_, err = db.CreatePackage(a1)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
2019-12-17 18:32:31 +00:00
|
|
|
|
2020-12-16 21:17:13 +00:00
|
|
|
_, err = db.CreatePackage(a3)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
s := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
|
|
|
pack, err := db.FindPackage(s)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(pack).To(Equal(a3))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("replaces definitions", func() {
|
|
|
|
db := NewInMemoryDatabase(false)
|
2022-01-06 22:57:56 +00:00
|
|
|
a := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
|
|
|
a1 := types.NewPackage("A", "1.1", []*types.Package{}, []*types.Package{})
|
|
|
|
a3 := types.NewPackage("A", "1.3", []*types.Package{}, []*types.Package{})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
a3.SetProvides([]*types.Package{{Name: "A", Category: "", Version: "1.0"}})
|
|
|
|
Expect(a3.GetProvides()).To(Equal([]*types.Package{{Name: "A", Category: "", Version: "1.0"}}))
|
2020-12-16 21:17:13 +00:00
|
|
|
|
|
|
|
_, err := db.CreatePackage(a)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
_, err = db.CreatePackage(a1)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
_, err = db.CreatePackage(a3)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
s := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
|
|
|
packs, err := db.FindPackages(s)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(packs).To(ContainElement(a3))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("replaces definitions", func() {
|
|
|
|
db := NewInMemoryDatabase(false)
|
2022-01-06 22:57:56 +00:00
|
|
|
a := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
|
|
|
a1 := types.NewPackage("A", "1.1", []*types.Package{}, []*types.Package{})
|
|
|
|
z := types.NewPackage("Z", "1.3", []*types.Package{}, []*types.Package{})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
z.SetProvides([]*types.Package{{Name: "A", Category: "", Version: ">=1.0"}})
|
|
|
|
Expect(z.GetProvides()).To(Equal([]*types.Package{{Name: "A", Category: "", Version: ">=1.0"}}))
|
2020-12-16 21:17:13 +00:00
|
|
|
|
|
|
|
_, err := db.CreatePackage(a)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
_, err = db.CreatePackage(a1)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
_, err = db.CreatePackage(z)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
s := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
|
|
|
packs, err := db.FindPackages(s)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(packs).To(ContainElement(z))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("replaces definitions of unexisting packages", func() {
|
|
|
|
db := NewInMemoryDatabase(false)
|
2022-01-06 22:57:56 +00:00
|
|
|
a1 := types.NewPackage("A", "1.1", []*types.Package{}, []*types.Package{})
|
|
|
|
z := types.NewPackage("Z", "1.3", []*types.Package{}, []*types.Package{})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
z.SetProvides([]*types.Package{{Name: "A", Category: "", Version: ">=1.0"}})
|
|
|
|
Expect(z.GetProvides()).To(Equal([]*types.Package{{Name: "A", Category: "", Version: ">=1.0"}}))
|
2020-12-16 21:17:13 +00:00
|
|
|
|
|
|
|
_, err := db.CreatePackage(a1)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
_, err = db.CreatePackage(z)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
s := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
|
|
|
packs, err := db.FindPackages(s)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(packs).To(ContainElement(z))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("replaces definitions of a required package", func() {
|
|
|
|
db := NewInMemoryDatabase(false)
|
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
c := types.NewPackage("C", "1.1", []*types.Package{{Name: "A", Category: "", Version: ">=0"}}, []*types.Package{})
|
|
|
|
z := types.NewPackage("Z", "1.3", []*types.Package{}, []*types.Package{})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
z.SetProvides([]*types.Package{{Name: "A", Category: "", Version: ">=1.0"}})
|
|
|
|
Expect(z.GetProvides()).To(Equal([]*types.Package{{Name: "A", Category: "", Version: ">=1.0"}}))
|
2020-12-16 21:17:13 +00:00
|
|
|
|
|
|
|
_, err := db.CreatePackage(z)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
_, err = db.CreatePackage(c)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
s := types.NewPackage("A", "1.0", []*types.Package{}, []*types.Package{})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
|
|
|
packs, err := db.FindPackages(s)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(packs).To(ContainElement(z))
|
|
|
|
})
|
|
|
|
|
|
|
|
When("Searching with selectors", func() {
|
|
|
|
It("replaces definitions of a required package", func() {
|
|
|
|
db := NewInMemoryDatabase(false)
|
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
c := types.NewPackage("C", "1.1", []*types.Package{{Name: "A", Category: "", Version: ">=0"}}, []*types.Package{})
|
|
|
|
z := types.NewPackage("Z", "1.3", []*types.Package{}, []*types.Package{})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
z.SetProvides([]*types.Package{{Name: "A", Category: "", Version: ">=1.0"}})
|
|
|
|
Expect(z.GetProvides()).To(Equal([]*types.Package{{Name: "A", Category: "", Version: ">=1.0"}}))
|
2020-12-16 21:17:13 +00:00
|
|
|
|
|
|
|
_, err := db.CreatePackage(z)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
_, err = db.CreatePackage(c)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
2022-01-06 22:57:56 +00:00
|
|
|
s := types.NewPackage("A", ">=1.0", []*types.Package{}, []*types.Package{})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
|
|
|
packs, err := db.FindPackages(s)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(packs).To(ContainElement(z))
|
|
|
|
})
|
|
|
|
})
|
2019-12-17 18:32:31 +00:00
|
|
|
|
|
|
|
})
|
2020-12-16 21:17:13 +00:00
|
|
|
|
2019-11-02 16:56:43 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
})
|