Github user joshelser commented on a diff in the pull request:

    https://github.com/apache/accumulo/pull/47#discussion_r40052599
  
    --- Diff: 
core/src/test/java/org/apache/accumulo/core/iterators/user/CombinerTest.java ---
    @@ -786,4 +816,107 @@ public void testAdds() {
         assertEquals(LongCombiner.safeAdd(Long.MAX_VALUE - 5, 5), 
Long.MAX_VALUE);
       }
     
    +  private TreeMap<Key,Value> readAll(SortedKeyValueIterator<Key,Value> 
combiner) throws Exception {
    +    TreeMap<Key,Value> ret = new TreeMap<Key,Value>();
    +
    +    combiner.seek(new Range(), EMPTY_COL_FAMS, false);
    +
    +    while (combiner.hasTop()) {
    +      ret.put(new Key(combiner.getTopKey()), new 
Value(combiner.getTopValue()));
    +      combiner.next();
    +    }
    +
    +    return ret;
    +  }
    +
    +  private void runDeleteHandlingTest(TreeMap<Key,Value> input, 
TreeMap<Key,Value> expected, DeleteHandlingAction dha, IteratorEnvironment env)
    +      throws Exception {
    +    runDeleteHandlingTest(input, expected, dha, env, null);
    +  }
    +
    +  private void runDeleteHandlingTest(TreeMap<Key,Value> input, 
TreeMap<Key,Value> expected, DeleteHandlingAction dha, IteratorEnvironment env,
    +      String expectedLog) throws Exception {
    +    boolean deepCopy = expected == null;
    +
    +    StringWriter writer = new StringWriter();
    +    WriterAppender appender = new WriterAppender(new PatternLayout("%p, 
%m%n"), writer);
    +    Logger logger = Logger.getLogger(Combiner.class);
    +    boolean additivity = logger.getAdditivity();
    +    try {
    +      logger.addAppender(appender);
    +      logger.setAdditivity(false);
    +
    +      Combiner ai = new SummingCombiner();
    +
    +      IteratorSetting is = new IteratorSetting(1, SummingCombiner.class);
    +      SummingCombiner.setEncodingType(is, 
LongCombiner.StringEncoder.class);
    +      Combiner.setColumns(is, Collections.singletonList(new 
IteratorSetting.Column("cf001")));
    +      if (dha != null) {
    +        Combiner.setDeleteHandlingAction(is, dha);
    +      }
    +
    +      ai.init(new SortedMapIterator(input), is.getOptions(), env);
    +
    +      if (deepCopy)
    +        assertEquals(expected, readAll(ai.deepCopy(env)));
    +      assertEquals(expected, readAll(ai));
    +
    +    } finally {
    +      logger.removeAppender(appender);
    +      logger.setAdditivity(additivity);
    +    }
    +
    +    String logMsgs = writer.toString();
    +    if (expectedLog == null) {
    +      Assert.assertTrue(logMsgs, logMsgs.length() == 0);
    +    } else {
    +      logMsgs = logMsgs.replace('\n', ' ');
    +      Assert.assertTrue(logMsgs, logMsgs.matches(expectedLog));
    +    }
    +  }
    +
    +  @Test
    +  public void testDeleteHandling() throws Exception {
    +    Encoder<Long> encoder = LongCombiner.STRING_ENCODER;
    +
    +    TreeMap<Key,Value> input = new TreeMap<Key,Value>();
    +
    +    IteratorEnvironment paritalMajcIe = new 
CombinerIteratorEnvironment(IteratorScope.majc, false);
    +    IteratorEnvironment fullMajcIe = new 
CombinerIteratorEnvironment(IteratorScope.majc, true);
    +
    +    // keys that aggregate
    +    nkv(input, 1, 1, 1, 1, false, 4l, encoder);
    +    nkv(input, 1, 1, 1, 2, true, 0l, encoder);
    +    nkv(input, 1, 1, 1, 3, false, 2l, encoder);
    +    nkv(input, 1, 1, 1, 4, false, 9l, encoder);
    +
    +    TreeMap<Key,Value> expected = new TreeMap<Key,Value>();
    +    nkv(expected, 1, 1, 1, 1, false, 4l, encoder);
    +    nkv(expected, 1, 1, 1, 2, true, 0l, encoder);
    +    nkv(expected, 1, 1, 1, 4, false, 11l, encoder);
    +
    +    try {
    +      runDeleteHandlingTest(input, expected, 
DeleteHandlingAction.THROW_EXCEPTION, paritalMajcIe);
    +      Assert.fail();
    +    } catch (IllegalStateException ise) {
    +      Assert.assertTrue(ise.getMessage().contains("Saw a delete during a 
partial compaction"));
    --- End diff --
    
    Try to include a meaningful error message if the assertion fails. We should 
be able to explain the exact reason the test failed just by looking at surefire 
output.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to