-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathimport.feature
157 lines (141 loc) · 3.58 KB
/
import.feature
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
Feature: Import statement
Scenario: Import a module
Given a file named "main.cloe" with:
"""
(import "./mod")
(seq! ..(mod.map print [1 2 3 4 5]))
"""
And a file named "mod.cloe" with:
"""
(def (map func list)
(match list
[] []
[first ..rest] [(func first) ..(map func rest)]))
"""
When I successfully run `cloe main.cloe`
Then the stdout should contain exactly:
"""
1
2
3
4
5
"""
Scenario: Import a module in a directory
Given a file named "main.cloe" with:
"""
(import "./modules/mod")
(mod.hello "world")
"""
And a file named "modules/mod.cloe" with:
"""
(def (hello name) (print (merge "Hello, " name "!")))
"""
When I successfully run `cloe main.cloe`
Then the stdout should contain exactly "Hello, world!"
Scenario: Import nested modules
Given a file named "main.cloe" with:
"""
(import "./foo/bar")
(bar.hello)
"""
And a directory named "foo"
And a file named "foo/bar.cloe" with:
"""
(import "./baz")
(let hello baz.hello)
"""
And a file named "foo/baz.cloe" with:
"""
(def (hello) (print "Hello, world!"))
"""
When I successfully run `cloe main.cloe`
Then the stdout should contain exactly "Hello, world!"
Scenario: Import a directory as a module
Given a file named "main.cloe" with:
"""
(import "./foo")
(foo.hello)
"""
And a file named "foo/module.cloe" with:
"""
(def (hello) (print "Hello, world!"))
"""
When I successfully run `cloe main.cloe`
Then the stdout should contain exactly "Hello, world!"
Scenario: Import a module with an alternative prefix
Given a file named "main.cloe" with:
"""
(import bar "./foo")
(bar.hello)
"""
And a file named "foo.cloe" with:
"""
(def (hello) (print "Hello, world!"))
"""
When I successfully run `cloe main.cloe`
Then the stdout should contain exactly "Hello, world!"
Scenario: Import a module and expand members inside
Given a file named "main.cloe" with:
"""
(import . "./foo")
(hello)
"""
And a file named "foo.cloe" with:
"""
(def (hello) (print "Hello, world!"))
"""
When I successfully run `cloe main.cloe`
Then the stdout should contain exactly "Hello, world!"
Scenario: Import a module with invalid path
Given a file named "main.cloe" with:
"""
(import "mod")
"""
And a file named "mod.cloe" with:
"""
"""
When I run `cloe main.cloe`
Then the exit status should not be 0
Scenario: Print values in cached modules
Given a file named "main.cloe" with:
"""
(import "./mod1")
(import "./mod2")
(seq!
(print mod1.stdin . end "")
(print mod2.stdin . end ""))
"""
And a file named "mod1.cloe" with:
"""
(import "./mod2")
(let stdin mod2.stdin)
"""
And a file named "mod2.cloe" with:
"""
(let stdin (read))
"""
When I successfully run `sh -c 'echo Hello | cloe main.cloe'`
Then the stdout should contain exactly:
"""
Hello
Hello
"""
Scenario: Import a module via language path
Given a file named "main.cloe" with:
"""
(import "foo")
(foo.hello)
"""
And a directory named "cloe-modules"
And a file named ".cloe/src/foo.cloe" with:
"""
(def (hello)
(print "Hello, world!"))
"""
And a file named "main.sh" with:
"""
CLOE_PATH=$PWD/.cloe cloe main.cloe
"""
When I successfully run `sh main.sh`
Then the stdout should contain exactly "Hello, world!"