-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackageTest.groovy
161 lines (123 loc) · 4.66 KB
/
PackageTest.groovy
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
158
159
160
161
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
class PackageTest extends GroovyTestCase {
void testPackages() {
assertScript '''
// tag::package_statement[]
// defining a package named com.yoursite
package com.yoursite
// end::package_statement[]
class Foo {
}
def foo = new Foo()
assert foo != null
assert Foo.class.name == 'com.yoursite.Foo'
'''
assertScript '''
//tag::import_statement[]
// importing the class MarkupBuilder
import groovy.xml.MarkupBuilder
// using the imported class to create an object
def xml = new MarkupBuilder()
assert xml != null
// end::import_statement[]
'''
}
void testDefaultImports() {
assertScript '''
// tag::default_import[]
new Date()
// end::default_import[]
'''
}
void testMultipleImportsFromSamePackage() {
assertScript '''
// tag::multiple_import[]
import groovy.xml.MarkupBuilder
import groovy.xml.StreamingMarkupBuilder
def markupBuilder = new MarkupBuilder()
assert markupBuilder != null
assert new StreamingMarkupBuilder() != null
// end::multiple_import[]
'''
}
void testStarImports() {
assertScript '''
// tag::star_import[]
import groovy.xml.*
def markupBuilder = new MarkupBuilder()
assert markupBuilder != null
assert new StreamingMarkupBuilder() != null
// end::star_import[]
'''
}
void testStaticImports() {
assertScript '''
// tag::static_imports[]
import static Boolean.FALSE
assert !FALSE //use directly, without Boolean prefix!
// end::static_imports[]
'''
}
void testStaticImportWithAs() {
assertScript '''
// tag::static_importswithas[]
import static Calendar.getInstance as now
assert now().class == Calendar.getInstance().class
// end::static_importswithas[]
'''
}
void testStaticStarImport() {
assertScript '''
// tag::static_importswithstar[]
import static java.lang.Math.*
assert sin(0) == 0.0
assert cos(0) == 1.0
// end::static_importswithstar[]
'''
}
void testStaticStarImportSameMethodNameDifferentParameterType() {
assertScript '''
// tag::static_import_same_method_name_different_parameter_type[]
import static java.lang.String.format // <1>
class SomeClass {
String format(Integer i) { // <2>
i.toString()
}
static void main(String[] args) {
assert format('String') == 'String' // <3>
assert new SomeClass().format(Integer.valueOf(1)) == '1'
}
}
// end::static_import_same_method_name_different_parameter_type[]
'''
}
void testAliasImport() {
assertScript '''
// tag::alias_import[]
import java.util.Date
import java.sql.Date as SQLDate
Date utilDate = new Date(1000L)
SQLDate sqlDate = new SQLDate(1000L)
assert utilDate instanceof java.util.Date
assert sqlDate instanceof java.sql.Date
// end::alias_import[]
'''
}
}