Migrate transactions package to new testsuite

Closes #44460

Signed-off-by: stianst <stianst@gmail.com>
This commit is contained in:
Stian Thorgersen
2025-11-26 10:57:19 +01:00
committed by GitHub
parent 37f2488441
commit a8d4336da6
7 changed files with 23 additions and 22 deletions

View File

@@ -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) {
}
}

View File

@@ -35,7 +35,6 @@ session,6
sessionlimits,6
ssl,6
theme,6
transactions,6
url,6
user,4
util,4

View File

@@ -12,7 +12,6 @@ RefreshTokenTest
RequiredActionUpdateProfileTest
SSOTest
SamlClientTest
TransactionsTest
UserProfileTest
OidcAdvancedClaimToGroupMapperTest
OidcAdvancedClaimToRoleMapperTest

View File

@@ -10,6 +10,5 @@ MutualTLSClientTest
PasswordPolicyTest
SSOTest
SamlClientTest
TransactionsTest
X509BrowserLoginTest
ThemeResourceProviderTest