mirror of
https://github.com/keycloak/keycloak.git
synced 2025-12-16 20:15:46 -06:00
Migrate transactions package to new testsuite
Closes #44460 Signed-off-by: stianst <stianst@gmail.com>
This commit is contained in:
@@ -1,53 +0,0 @@
|
||||
/*
|
||||
* Copyright 2016 Red Hat, Inc. and/or its affiliates
|
||||
* and other contributors as indicated by the @author tags.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.keycloak.testsuite.transactions;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.keycloak.representations.idm.RealmRepresentation;
|
||||
import org.keycloak.testsuite.AbstractKeycloakTest;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a>
|
||||
*/
|
||||
public class TransactionsTest extends AbstractKeycloakTest {
|
||||
|
||||
@Test
|
||||
public void testTransactionActive() {
|
||||
testingClient.server().run(
|
||||
session -> {
|
||||
Assert.assertTrue(session.getTransactionManager().isActive());
|
||||
session.getTransactionManager().commit();
|
||||
Assert.assertFalse(session.getTransactionManager().isActive());
|
||||
|
||||
session.getTransactionManager().begin();
|
||||
Assert.assertTrue(session.getTransactionManager().isActive());
|
||||
session.getTransactionManager().rollback();
|
||||
Assert.assertFalse(session.getTransactionManager().isActive());
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addTestRealms(List<RealmRepresentation> testRealms) {
|
||||
}
|
||||
|
||||
}
|
||||
@@ -35,7 +35,6 @@ session,6
|
||||
sessionlimits,6
|
||||
ssl,6
|
||||
theme,6
|
||||
transactions,6
|
||||
url,6
|
||||
user,4
|
||||
util,4
|
||||
|
||||
@@ -12,7 +12,6 @@ RefreshTokenTest
|
||||
RequiredActionUpdateProfileTest
|
||||
SSOTest
|
||||
SamlClientTest
|
||||
TransactionsTest
|
||||
UserProfileTest
|
||||
OidcAdvancedClaimToGroupMapperTest
|
||||
OidcAdvancedClaimToRoleMapperTest
|
||||
|
||||
@@ -10,6 +10,5 @@ MutualTLSClientTest
|
||||
PasswordPolicyTest
|
||||
SSOTest
|
||||
SamlClientTest
|
||||
TransactionsTest
|
||||
X509BrowserLoginTest
|
||||
ThemeResourceProviderTest
|
||||
|
||||
Reference in New Issue
Block a user