[jira] [Updated] (GROOVY-8537) GroovyCollections.combinations(Iterable) exhibits incorrect (asymmetric) behavior

2018-04-11 Thread Daniel Sun (JIRA)

 [ 
https://issues.apache.org/jira/browse/GROOVY-8537?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Daniel Sun updated GROOVY-8537:
---
Fix Version/s: 2.5.0-rc-2
   2.6.0-alpha-4
   3.0.0-alpha-2

> GroovyCollections.combinations(Iterable) exhibits incorrect (asymmetric) 
> behavior
> -
>
> Key: GROOVY-8537
> URL: https://issues.apache.org/jira/browse/GROOVY-8537
> Project: Groovy
>  Issue Type: Bug
>  Components: groovy-jdk
>Affects Versions: 2.4.15
>Reporter: Venkatesh-Prasad Ranganath
>Assignee: Paul King
>Priority: Major
>  Labels: easyfix
> Fix For: 3.0.0-alpha-2, 2.6.0-alpha-4, 2.4.16, 2.5.0-rc-2
>
>
> h4. *Issue*
> When GroovyCollections.combinations() is invoked on a collection of iterables 
> with at least one empty iterable, the expected return value is an empty list 
> of combinations.
> Instead, in version 2.4.15 (and I am guessing in earlier versions at least 
> since 2.2.0), the return value of combinations() is sensitive to the order of 
> iterables in the input collection.  Here are two instances of such behavior.
> h4. Repro
> {{groovy:000> assert [[1,3], []].combinations() == [[], 
> [1,3]].combinations()}}
>  {{ERROR org.codehaus.groovy.runtime.powerassert.PowerAssertionError:}}
>  {{assert [[1,3], []].combinations() == [[], [1,3]].combinations()}}
>  {{   |  |  |}}
>  {{   [] false  [[1], [3]]}}
>  
> {{groovy:000> assert [[1,3], [2], []].combinations() == [[1,3], [], 
> [2]].combinations()}}
>  {{ERROR org.codehaus.groovy.runtime.powerassert.PowerAssertionError:}}
>  {{assert [[1,3], [2], []].combinations() == [[1,3], [], [2]].combinations()}}
>  {{    |  |   |}}
>  {{    [] false   [[2]]}}
> h4. *Fix*
> Add a short-circuiting check at the start of combinations(Iterable) method to 
> return an empty list of combination if any of the input iterables are empty.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (GROOVY-8537) GroovyCollections.combinations(Iterable) exhibits incorrect asymmetric behavior

2018-04-07 Thread Venkatesh-Prasad Ranganath (JIRA)

 [ 
https://issues.apache.org/jira/browse/GROOVY-8537?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Venkatesh-Prasad Ranganath updated GROOVY-8537:
---
Description: 
h4. *Issue*

When GroovyCollections.combinations() is invoked on a collection of iterables 
with at least one empty iterable, the expected return value is an empty list of 
combinations.

Instead, in version 2.4.15 (and I am guessing in earlier versions at least 
since 2.2.0), the return value of combinations() is sensitive to the order of 
iterables in the input collection.  Here are two instances of such behavior.
h4. Repro

{{groovy:000> assert [[1,3], []].combinations() == [[], [1,3]].combinations()}}
 {{ERROR org.codehaus.groovy.runtime.powerassert.PowerAssertionError:}}
 {{assert [[1,3], []].combinations() == [[], [1,3]].combinations()}}
 {{   |  |  |}}
 {{   [] false  [[1], [3]]}}

 

{{groovy:000> assert [[1,3], [2], []].combinations() == [[1,3], [], 
[2]].combinations()}}
 {{ERROR org.codehaus.groovy.runtime.powerassert.PowerAssertionError:}}
 {{assert [[1,3], [2], []].combinations() == [[1,3], [], [2]].combinations()}}
 {{    |  |   |}}
 {{    [] false   [[2]]}}
h4. *Fix*

Add a short-circuiting check at the start of combinations(Iterable) method to 
return an empty list of combination if any of the input iterables are empty.

  was:
h4. *Issue*

When GroovyCollections.combinations() is invoked on a collection of iterables 
with at least one empty iterable, the expected return value is an empty list of 
combinations.

Instead, in version 2.4.15 (and I am guessing in earlier versions at least 
since 2.2.0), the return value of combinations() is sensitive to the order of 
iterables in the input collection.  Here are two instances of such behavior.
h4. Repro

{{groovy:000> assert [[1,3], []].combinations() == [[], [1,3]].combinations()}}
{{ERROR org.codehaus.groovy.runtime.powerassert.PowerAssertionError:}}
{{assert [[1,3], []].combinations() == [[], [1,3]].combinations()}}
{{   |  |  |}}
{{   [] false  [[1], [3]]}}

 

{{groovy:000> assert [[1,3], [2], []].combinations() == [[1,3], [], 
[2]].combinations()}}
{{ERROR org.codehaus.groovy.runtime.powerassert.PowerAssertionError:}}
{{assert [[1,3], [2], []].combinations() == [[1,3], [], [2]].combinations()}}
{{    |  |   |}}
{{    [] false   [[2]]}}
h4. *Fix*

A simple short-circuiting check at the start of combinations(Iterable) method 
to return an empty list of combination if any of the input iterables are empty 
should fix the problem.


> GroovyCollections.combinations(Iterable) exhibits incorrect asymmetric 
> behavior
> ---
>
> Key: GROOVY-8537
> URL: https://issues.apache.org/jira/browse/GROOVY-8537
> Project: Groovy
>  Issue Type: Bug
>  Components: groovy-jdk
>Affects Versions: 2.4.15
>Reporter: Venkatesh-Prasad Ranganath
>Priority: Major
>  Labels: easyfix
>
> h4. *Issue*
> When GroovyCollections.combinations() is invoked on a collection of iterables 
> with at least one empty iterable, the expected return value is an empty list 
> of combinations.
> Instead, in version 2.4.15 (and I am guessing in earlier versions at least 
> since 2.2.0), the return value of combinations() is sensitive to the order of 
> iterables in the input collection.  Here are two instances of such behavior.
> h4. Repro
> {{groovy:000> assert [[1,3], []].combinations() == [[], 
> [1,3]].combinations()}}
>  {{ERROR org.codehaus.groovy.runtime.powerassert.PowerAssertionError:}}
>  {{assert [[1,3], []].combinations() == [[], [1,3]].combinations()}}
>  {{   |  |  |}}
>  {{   [] false  [[1], [3]]}}
>  
> {{groovy:000> assert [[1,3], [2], []].combinations() == [[1,3], [], 
> [2]].combinations()}}
>  {{ERROR org.codehaus.groovy.runtime.powerassert.PowerAssertionError:}}
>  {{assert [[1,3], [2], []].combinations() == [[1,3], [], [2]].combinations()}}
>  {{    |  |   |}}
>  {{    [] false   [[2]]}}
> h4. *Fix*
> Add a short-circuiting check at the start of combinations(Iterable) method to 
> return an empty list of combination if any of the input iterables are empty.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (GROOVY-8537) GroovyCollections.combinations(Iterable) exhibits incorrect (asymmetric) behavior

2018-04-07 Thread Venkatesh-Prasad Ranganath (JIRA)

 [ 
https://issues.apache.org/jira/browse/GROOVY-8537?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Venkatesh-Prasad Ranganath updated GROOVY-8537:
---
Summary: GroovyCollections.combinations(Iterable) exhibits incorrect 
(asymmetric) behavior  (was: GroovyCollections.combinations(Iterable) exhibits 
incorrect asymmetric behavior)

> GroovyCollections.combinations(Iterable) exhibits incorrect (asymmetric) 
> behavior
> -
>
> Key: GROOVY-8537
> URL: https://issues.apache.org/jira/browse/GROOVY-8537
> Project: Groovy
>  Issue Type: Bug
>  Components: groovy-jdk
>Affects Versions: 2.4.15
>Reporter: Venkatesh-Prasad Ranganath
>Priority: Major
>  Labels: easyfix
>
> h4. *Issue*
> When GroovyCollections.combinations() is invoked on a collection of iterables 
> with at least one empty iterable, the expected return value is an empty list 
> of combinations.
> Instead, in version 2.4.15 (and I am guessing in earlier versions at least 
> since 2.2.0), the return value of combinations() is sensitive to the order of 
> iterables in the input collection.  Here are two instances of such behavior.
> h4. Repro
> {{groovy:000> assert [[1,3], []].combinations() == [[], 
> [1,3]].combinations()}}
>  {{ERROR org.codehaus.groovy.runtime.powerassert.PowerAssertionError:}}
>  {{assert [[1,3], []].combinations() == [[], [1,3]].combinations()}}
>  {{   |  |  |}}
>  {{   [] false  [[1], [3]]}}
>  
> {{groovy:000> assert [[1,3], [2], []].combinations() == [[1,3], [], 
> [2]].combinations()}}
>  {{ERROR org.codehaus.groovy.runtime.powerassert.PowerAssertionError:}}
>  {{assert [[1,3], [2], []].combinations() == [[1,3], [], [2]].combinations()}}
>  {{    |  |   |}}
>  {{    [] false   [[2]]}}
> h4. *Fix*
> Add a short-circuiting check at the start of combinations(Iterable) method to 
> return an empty list of combination if any of the input iterables are empty.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)