-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathimportdescription_test.go
100 lines (80 loc) · 3.26 KB
/
importdescription_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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
Copyright 2016 Ontario Systems
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package isclib_test
import (
"os"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/ontariosystems/isclib/v2"
)
var _ = Describe("ImportDescription", func() {
Context("NewImportDescription", func() {
It("Only allows one **", func() {
_, err := isclib.NewImportDescription("/a/b/c/**/d/e/f/**/*.xml", "")
Expect(err).To(MatchError(isclib.ErrTooManyRecursiveDirs))
})
It("Does not allow * in the directory", func() {
var err error
_, err = isclib.NewImportDescription("/a/b/c/*/d/e/f/**/*.xml", "")
Expect(err).To(MatchError(isclib.ErrWildcardInDirectory))
_, err = isclib.NewImportDescription("/a/b/c/*/d/e/f/*.xml", "")
Expect(err).To(MatchError(isclib.ErrWildcardInDirectory))
})
It("Does not allow trailing paths between a ** and the file pattern", func() {
_, err := isclib.NewImportDescription("/a/b/c/**/d/e/f/*.xml", "")
Expect(err).To(MatchError(isclib.ErrPathAfterRecursiveDirs))
})
It("Ensures that there is a path separator between ** and the trailing file pattern", func() {
_, err := isclib.NewImportDescription("/a/b/c/***.xml", "")
Expect(err).To(MatchError(isclib.ErrMissingPathSeparator))
})
It("Properly parses the directory and file pattern", func() {
var id *isclib.ImportDescription
var err error
var cwd string
if cwd, err = os.Getwd(); err != nil {
panic(err)
}
id, err = isclib.NewImportDescription("*.xml", "")
Expect(err).To(Not(HaveOccurred()))
Expect(id.Dir).To(Equal(cwd))
Expect(id.FilePattern).To(Equal("*.xml"))
Expect(id.Recursive).To(BeFalse())
id, err = isclib.NewImportDescription("/a/b/c/*.xml", "")
Expect(err).To(Not(HaveOccurred()))
Expect(id.Dir).To(Equal("/a/b/c"))
Expect(id.FilePattern).To(Equal("*.xml"))
Expect(id.Recursive).To(BeFalse())
id, err = isclib.NewImportDescription("**/*.xml", "")
Expect(err).To(Not(HaveOccurred()))
Expect(id.Dir).To(Equal(cwd))
Expect(id.FilePattern).To(Equal("*.xml"))
Expect(id.Recursive).To(BeTrue())
id, err = isclib.NewImportDescription("/a/b/c/**/*.xml", "")
Expect(err).To(Not(HaveOccurred()))
Expect(id.Dir).To(Equal("/a/b/c"))
Expect(id.FilePattern).To(Equal("*.xml"))
Expect(id.Recursive).To(BeTrue())
})
It("Creates the correct import string", func() {
var id *isclib.ImportDescription
var err error
id, err = isclib.NewImportDescription("/a/b/c/*.xml", "/t1")
Expect(err).To(Not(HaveOccurred()))
Expect(id.String()).To(Equal(`##class(%SYSTEM.OBJ).ImportDir("/a/b/c","*.xml","/t1",,0)`))
id, err = isclib.NewImportDescription("/a/b/c/**/abc.xml", "/t2")
Expect(err).To(Not(HaveOccurred()))
Expect(id.String()).To(Equal(`##class(%SYSTEM.OBJ).ImportDir("/a/b/c","abc.xml","/t2",,1)`))
})
})
})