Skip to content

Commit

Permalink
Add ignoring iid column.
Browse files Browse the repository at this point in the history
Close #142
  • Loading branch information
Ilia Rogozhin committed Nov 14, 2018
1 parent 01fe8b6 commit 9c3823d
Show file tree
Hide file tree
Showing 2 changed files with 136 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
/*
* MIT License
*
* Copyright (c) 2018 Ilia Rogozhin (@smallcreep) <ilia.rogozhin@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

package com.github.smallcreep.cucumber.seeds.storage;

import java.util.Map;
import org.cactoos.iterable.IterableOf;
import org.cactoos.map.MapEntry;
import org.cactoos.map.MapOf;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.Test;

/**
* Test Case for {@link StorageWithoutIids}.
* @since 0.2.0
*/
public final class StorageWithoutIidsTest {

/**
* StorageWithoutIids remove entry with key iid from all maps.
*/
@Test
public void removeEntryWithIidFromMaps() {
final String iid = "iid";
final String another = "another";
MatcherAssert.assertThat(
new StorageWithoutIids(
new IterableOf<Map<String, String>>(
new MapOf<String, String>(
new MapEntry<>(
iid,
"1"
),
new MapEntry<>(
another,
"2"
)
),
new MapOf<String, String>(
new MapEntry<>(
iid,
"2"
),
new MapEntry<>(
another,
"3"
)
)
)
),
Matchers.allOf(
Matchers.not(
Matchers.allOf(
Matchers.hasItem(
Matchers.hasEntry(
Matchers.equalTo(iid),
Matchers.equalTo("1")
)
),
Matchers.hasItem(
Matchers.hasEntry(
Matchers.equalTo(iid),
Matchers.equalTo("2")
)
)
)
),
Matchers.allOf(
Matchers.hasItem(
Matchers.hasEntry(
Matchers.equalTo(another),
Matchers.equalTo("2")
)
),
Matchers.hasItem(
Matchers.hasEntry(
Matchers.equalTo(another),
Matchers.equalTo("3")
)
)
)
)
);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* MIT License
*
* Copyright (c) 2018 Ilia Rogozhin (@smallcreep) <ilia.rogozhin@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

/**
* Test Cases for Storage.
* @since 0.2.0
*/
package com.github.smallcreep.cucumber.seeds.storage;

1 comment on commit 9c3823d

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on 9c3823d Nov 14, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 142-9e40c68c discovered in seeds-db/src/test/java/com/github/smallcreep/cucumber/seeds/rows/RwDefaultItCase.java and submitted as #147. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.