blob: 185119bb376537cfe565be805c5ae6bd0ce2c30d [file] [log] [blame]
/*
* 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.
*/
package groovy.bugs
import groovy.test.GroovyTestCase
class SubscriptAndExpressionBug extends GroovyTestCase {
void testBug() {
def foo = ["nice cheese grommit"]
def cheese = foo[0].startsWith("nice")
assert cheese == true
}
void testSubscriptIncrement() {
def foo = [5, 6, 7]
foo[0] += 5
assert foo[0] == 10
def i = 0
foo[i++] = 1
assert foo[0] == 1
assert i == 1
foo[i++] += 5
assert i == 2
assert foo[1] == 11
}
void testLargeSubscript() {
def foo = [1]
foo[10] = 123
assert foo[10] == 123
foo.putAt(12, 55)
assert foo[12] == 55
def i = 20
foo[i] = 1
foo[i++] += 5
assert i == 21
assert foo[20] == 6
}
void testDoubleSubscript() {
def foo = ["nice cheese grommit"]
def cheese = foo[0][5..10]
assert cheese == "cheese"
}
void testSubscriptAndProperty() {
def foo = [['gromit':'cheese']]
def cheese = foo[0].gromit
assert cheese == "cheese"
}
void testBooleanExpression() {
int[] a = new int[1]
assert (a[0] = 42) == 42
assert a[0] == 42
}
}