net.officefloor.identity.google.mock.GoogleIdTokenRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of officeidentity_google Show documentation
Show all versions of officeidentity_google Show documentation
OfficeFloor plug-in for verifying Google logins
/*-
* #%L
* Identity for Google Logins
* %%
* Copyright (C) 2005 - 2020 Daniel Sagenschneider
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
* #L%
*/
package net.officefloor.identity.google.mock;
import org.junit.Rule;
import org.junit.rules.TestRule;
import org.junit.runner.Description;
import org.junit.runners.model.Statement;
import com.google.api.client.googleapis.auth.oauth2.GoogleIdTokenVerifier;
/**
* {@link Rule} for mocking the {@link GoogleIdTokenVerifier}.
*
* @author Daniel Sagenschneider
*/
public class GoogleIdTokenRule extends AbstractGoogleIdTokenJUnit implements TestRule {
/*
* =================== TestRule =========================
*/
@Override
public Statement apply(Statement base, Description description) {
return new Statement() {
@Override
public void evaluate() throws Throwable {
try {
// Setup mock tokens
GoogleIdTokenRule.this.setupMockTokens();
// Undertaken test
base.evaluate();
} finally {
// Tear down mock tokens
GoogleIdTokenRule.this.tearDownMockTokens();
}
}
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy