Decouple SessionMetadata and TransportCredentials

TransportCredentials are per-request, not per-session, and
there's no reason to carry them within SessionMetadata.

While I'm in here, get rid of "null" credentials.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=125202213
This commit is contained in:
cgoldfeder 2016-06-17 14:24:04 -07:00 committed by Ben McIlwain
parent fe1cd06da8
commit 3ae646d687
26 changed files with 134 additions and 120 deletions

View file

@ -93,6 +93,7 @@ public abstract class FlowTestCase<F extends Flow> {
protected Class<? extends Flow> flowClass;
protected TestSessionMetadata sessionMetadata;
protected FakeClock clock = new FakeClock(DateTime.now(UTC));
protected TransportCredentials credentials = new PasswordOnlyTransportCredentials();
@Before
public void init() throws Exception {
@ -141,6 +142,7 @@ public abstract class FlowTestCase<F extends Flow> {
eppInput,
getTrid(),
sessionMetadata,
credentials,
"<xml></xml>".getBytes(),
null,
clock);