mirror of
https://github.com/mudler/luet.git
synced 2025-08-12 04:32:11 +00:00
Add annotations option to package spec
This commit is contained in:
parent
dba6c361c2
commit
44d68a9583
49
pkg/helpers/match.go
Normal file
49
pkg/helpers/match.go
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
// Copyright © 2019-2020 Ettore Di Giacinto <mudler@gentoo.org>
|
||||||
|
// Daniele Rondina <geaaru@sabayonlinux.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/>.
|
||||||
|
|
||||||
|
package helpers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"regexp"
|
||||||
|
)
|
||||||
|
|
||||||
|
func MapMatchRegex(m *map[string]string, r *regexp.Regexp) bool {
|
||||||
|
ans := false
|
||||||
|
|
||||||
|
if m != nil {
|
||||||
|
for k, v := range *m {
|
||||||
|
if r.MatchString(k + "=" + v) {
|
||||||
|
ans = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return ans
|
||||||
|
}
|
||||||
|
|
||||||
|
func MapHasKey(m *map[string]string, label string) bool {
|
||||||
|
ans := false
|
||||||
|
if m != nil {
|
||||||
|
for k, _ := range *m {
|
||||||
|
if k == label {
|
||||||
|
ans = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ans
|
||||||
|
}
|
@ -26,6 +26,7 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/mudler/luet/pkg/helpers"
|
||||||
version "github.com/mudler/luet/pkg/versioner"
|
version "github.com/mudler/luet/pkg/versioner"
|
||||||
|
|
||||||
gentoo "github.com/Sabayon/pkgs-checker/pkg/gentoo"
|
gentoo "github.com/Sabayon/pkgs-checker/pkg/gentoo"
|
||||||
@ -93,6 +94,11 @@ type Package interface {
|
|||||||
HasLabel(string) bool
|
HasLabel(string) bool
|
||||||
MatchLabel(*regexp.Regexp) bool
|
MatchLabel(*regexp.Regexp) bool
|
||||||
|
|
||||||
|
AddAnnotation(string, string)
|
||||||
|
GetAnnotations() map[string]string
|
||||||
|
HasAnnotation(string) bool
|
||||||
|
MatchAnnotation(*regexp.Regexp) bool
|
||||||
|
|
||||||
IsSelector() bool
|
IsSelector() bool
|
||||||
VersionMatchSelector(string, version.Versioner) (bool, error)
|
VersionMatchSelector(string, version.Versioner) (bool, error)
|
||||||
SelectorMatchVersion(string, version.Versioner) (bool, error)
|
SelectorMatchVersion(string, version.Versioner) (bool, error)
|
||||||
@ -158,7 +164,8 @@ type DefaultPackage struct {
|
|||||||
IsSet bool `json:"set,omitempty"` // Affects YAML field names too.
|
IsSet bool `json:"set,omitempty"` // Affects YAML field names too.
|
||||||
Provides []*DefaultPackage `json:"provides,omitempty"` // Affects YAML field names too.
|
Provides []*DefaultPackage `json:"provides,omitempty"` // Affects YAML field names too.
|
||||||
|
|
||||||
// TODO: Annotations?
|
// Annotations are used for core features/options
|
||||||
|
Annotations map[string]string `json:"annotations,omitempty"` // Affects YAML field names too
|
||||||
|
|
||||||
// Path is set only internally when tree is loaded from disk
|
// Path is set only internally when tree is loaded from disk
|
||||||
Path string `json:"path,omitempty"`
|
Path string `json:"path,omitempty"`
|
||||||
@ -240,25 +247,19 @@ func (p *DefaultPackage) IsSelector() bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (p *DefaultPackage) HasLabel(label string) bool {
|
func (p *DefaultPackage) HasLabel(label string) bool {
|
||||||
ans := false
|
return helpers.MapHasKey(&p.Labels, label)
|
||||||
for k, _ := range p.Labels {
|
|
||||||
if k == label {
|
|
||||||
ans = true
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ans
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *DefaultPackage) MatchLabel(r *regexp.Regexp) bool {
|
func (p *DefaultPackage) MatchLabel(r *regexp.Regexp) bool {
|
||||||
ans := false
|
return helpers.MapMatchRegex(&p.Labels, r)
|
||||||
for k, v := range p.Labels {
|
|
||||||
if r.MatchString(k + "=" + v) {
|
|
||||||
ans = true
|
|
||||||
break
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *DefaultPackage) HasAnnotation(label string) bool {
|
||||||
|
return helpers.MapHasKey(&p.Annotations, label)
|
||||||
}
|
}
|
||||||
return ans
|
|
||||||
|
func (p *DefaultPackage) MatchAnnotation(r *regexp.Regexp) bool {
|
||||||
|
return helpers.MapMatchRegex(&p.Annotations, r)
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddUse adds a use to a package
|
// AddUse adds a use to a package
|
||||||
@ -355,9 +356,18 @@ func (p *DefaultPackage) AddLabel(k, v string) {
|
|||||||
}
|
}
|
||||||
p.Labels[k] = v
|
p.Labels[k] = v
|
||||||
}
|
}
|
||||||
|
func (p *DefaultPackage) AddAnnotation(k, v string) {
|
||||||
|
if p.Annotations == nil {
|
||||||
|
p.Annotations = make(map[string]string, 0)
|
||||||
|
}
|
||||||
|
p.Annotations[k] = v
|
||||||
|
}
|
||||||
func (p *DefaultPackage) GetLabels() map[string]string {
|
func (p *DefaultPackage) GetLabels() map[string]string {
|
||||||
return p.Labels
|
return p.Labels
|
||||||
}
|
}
|
||||||
|
func (p *DefaultPackage) GetAnnotations() map[string]string {
|
||||||
|
return p.Annotations
|
||||||
|
}
|
||||||
func (p *DefaultPackage) GetProvides() []*DefaultPackage {
|
func (p *DefaultPackage) GetProvides() []*DefaultPackage {
|
||||||
return p.Provides
|
return p.Provides
|
||||||
}
|
}
|
||||||
|
@ -46,6 +46,7 @@ var _ = Describe("Package", func() {
|
|||||||
a1 := NewPackage("A", "1.0", []*DefaultPackage{}, []*DefaultPackage{})
|
a1 := NewPackage("A", "1.0", []*DefaultPackage{}, []*DefaultPackage{})
|
||||||
a11 := NewPackage("A", "1.1", []*DefaultPackage{}, []*DefaultPackage{})
|
a11 := NewPackage("A", "1.1", []*DefaultPackage{}, []*DefaultPackage{})
|
||||||
a01 := NewPackage("A", "0.1", []*DefaultPackage{}, []*DefaultPackage{})
|
a01 := NewPackage("A", "0.1", []*DefaultPackage{}, []*DefaultPackage{})
|
||||||
|
re := regexp.MustCompile("project[0-9][=].*")
|
||||||
It("Expands correctly", func() {
|
It("Expands correctly", func() {
|
||||||
definitions := NewInMemoryDatabase(false)
|
definitions := NewInMemoryDatabase(false)
|
||||||
for _, p := range []Package{a1, a11, a01} {
|
for _, p := range []Package{a1, a11, a01} {
|
||||||
@ -60,6 +61,8 @@ var _ = Describe("Package", func() {
|
|||||||
Expect(len(lst)).To(Equal(2))
|
Expect(len(lst)).To(Equal(2))
|
||||||
p := lst.Best(nil)
|
p := lst.Best(nil)
|
||||||
Expect(p).To(Equal(a11))
|
Expect(p).To(Equal(a11))
|
||||||
|
// Test annotation with null map
|
||||||
|
Expect(a.MatchAnnotation(re)).To(Equal(false))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -91,6 +94,34 @@ var _ = Describe("Package", func() {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Context("Find annotations on packages", func() {
|
||||||
|
a := NewPackage("A", ">=1.0", []*DefaultPackage{}, []*DefaultPackage{})
|
||||||
|
a.AddAnnotation("project1", "test1")
|
||||||
|
a.AddAnnotation("label2", "value1")
|
||||||
|
b := NewPackage("B", "1.0", []*DefaultPackage{}, []*DefaultPackage{})
|
||||||
|
b.AddAnnotation("project2", "test2")
|
||||||
|
b.AddAnnotation("label2", "value1")
|
||||||
|
It("Expands correctly", func() {
|
||||||
|
var err error
|
||||||
|
definitions := NewInMemoryDatabase(false)
|
||||||
|
for _, p := range []Package{a, b} {
|
||||||
|
_, err = definitions.CreatePackage(p)
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
}
|
||||||
|
re := regexp.MustCompile("project[0-9][=].*")
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
Expect(re).ToNot(BeNil())
|
||||||
|
Expect(a.HasAnnotation("label2")).To(Equal(true))
|
||||||
|
Expect(a.HasAnnotation("label3")).To(Equal(false))
|
||||||
|
Expect(a.HasAnnotation("project1")).To(Equal(true))
|
||||||
|
Expect(b.HasAnnotation("project2")).To(Equal(true))
|
||||||
|
Expect(b.HasAnnotation("label2")).To(Equal(true))
|
||||||
|
Expect(b.MatchAnnotation(re)).To(Equal(true))
|
||||||
|
Expect(a.MatchAnnotation(re)).To(Equal(true))
|
||||||
|
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
Context("Check description", func() {
|
Context("Check description", func() {
|
||||||
a := NewPackage("A", ">=1.0", []*DefaultPackage{}, []*DefaultPackage{})
|
a := NewPackage("A", ">=1.0", []*DefaultPackage{}, []*DefaultPackage{})
|
||||||
a.SetDescription("Description A")
|
a.SetDescription("Description A")
|
||||||
|
@ -32,6 +32,8 @@ type DefaultPackageSanitized struct {
|
|||||||
IsSet bool `json:"set,omitempty" yaml:"set,omitempty"`
|
IsSet bool `json:"set,omitempty" yaml:"set,omitempty"`
|
||||||
Provides []*DefaultPackageSanitized `json:"provides,omitempty" yaml:"provides,omitempty"`
|
Provides []*DefaultPackageSanitized `json:"provides,omitempty" yaml:"provides,omitempty"`
|
||||||
|
|
||||||
|
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
|
||||||
|
|
||||||
// Path is set only internally when tree is loaded from disk
|
// Path is set only internally when tree is loaded from disk
|
||||||
Path string `json:"path,omitempty" yaml:"path,omitempty"`
|
Path string `json:"path,omitempty" yaml:"path,omitempty"`
|
||||||
|
|
||||||
@ -54,6 +56,7 @@ func NewDefaultPackageSanitized(p pkg.Package) *DefaultPackageSanitized {
|
|||||||
Uri: p.GetURI(),
|
Uri: p.GetURI(),
|
||||||
License: p.GetLicense(),
|
License: p.GetLicense(),
|
||||||
Labels: p.GetLabels(),
|
Labels: p.GetLabels(),
|
||||||
|
Annotations: p.GetAnnotations(),
|
||||||
}
|
}
|
||||||
|
|
||||||
if p.GetRequires() != nil && len(p.GetRequires()) > 0 {
|
if p.GetRequires() != nil && len(p.GetRequires()) > 0 {
|
||||||
|
@ -23,6 +23,7 @@ package tree_test
|
|||||||
import (
|
import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
|
"regexp"
|
||||||
|
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
@ -171,4 +172,23 @@ var _ = Describe("Tree", func() {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Context("Simple tree with annotations", func() {
|
||||||
|
It("Read tree with annotations", func() {
|
||||||
|
db := pkg.NewInMemoryDatabase(false)
|
||||||
|
generalRecipe := NewCompilerRecipe(db)
|
||||||
|
r := regexp.MustCompile("^label")
|
||||||
|
|
||||||
|
err := generalRecipe.Load("../../tests/fixtures/annotations")
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
|
||||||
|
Expect(len(generalRecipe.GetDatabase().World())).To(Equal(1))
|
||||||
|
pack, err := generalRecipe.GetDatabase().FindPackage(&pkg.DefaultPackage{Name: "pkgA", Category: "test", Version: "0.1"})
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
|
||||||
|
Expect(pack.HasAnnotation("label1")).To(Equal(true))
|
||||||
|
Expect(pack.HasAnnotation("label3")).To(Equal(false))
|
||||||
|
Expect(pack.MatchAnnotation(r)).To(Equal(true))
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
})
|
})
|
||||||
|
3
tests/fixtures/annotations/pkgA/0.1/build.yaml
vendored
Normal file
3
tests/fixtures/annotations/pkgA/0.1/build.yaml
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
image: "alpine"
|
||||||
|
steps:
|
||||||
|
- echo "test" > /file1
|
6
tests/fixtures/annotations/pkgA/0.1/definition.yaml
vendored
Normal file
6
tests/fixtures/annotations/pkgA/0.1/definition.yaml
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
category: "test"
|
||||||
|
name: "pkgA"
|
||||||
|
version: "0.1"
|
||||||
|
annotations:
|
||||||
|
label1: "value1"
|
||||||
|
label2: "value2"
|
Loading…
Reference in New Issue
Block a user