Log the start and finish of tests within ShardableTestCase

Kokoro's logs do not identify which test is allocated to which shard, so explicitly log the test names at start and finish.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=140594581
This commit is contained in:
ctingue 2016-11-30 05:38:54 -08:00 committed by Ben McIlwain
parent 5f32d1bbeb
commit e51e220a98
2 changed files with 21 additions and 10 deletions

View file

@ -44,7 +44,6 @@ import google.registry.testing.ExceptionRule;
import google.registry.testing.FakeClock;
import google.registry.testing.FakeResponse;
import google.registry.testing.mapreduce.MapreduceTestCase;
import google.registry.util.FormattingLogger;
import java.util.ArrayList;
import java.util.List;
import org.joda.money.Money;
@ -52,12 +51,10 @@ import org.joda.time.DateTime;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Unit tests for {@link ExpandRecurringBillingEventsAction}. */
// The logger in this class is temporary, necessary for diagnosing some odd test failure behavior.
@RunWith(JUnit4.class)
public class ExpandRecurringBillingEventsActionTest
extends MapreduceTestCase<ExpandRecurringBillingEventsAction> {
@ -65,11 +62,6 @@ public class ExpandRecurringBillingEventsActionTest
@Rule
public final ExceptionRule thrown = new ExceptionRule();
@Rule
public TestName testName = new TestName();
private static final FormattingLogger logger = FormattingLogger.getLoggerForCallerClass();
final FakeClock clock = new FakeClock(DateTime.parse("2000-10-02T00:00:00Z"));
DomainResource domain;
@ -78,7 +70,6 @@ public class ExpandRecurringBillingEventsActionTest
@Before
public void init() {
logger.infofmt("Running test %s", testName.getMethodName());
action = new ExpandRecurringBillingEventsAction();
action.mrRunner = makeDefaultRunner();
action.clock = clock;