Search in sources :

Example 1 with ResidentGroupHandler

use of com.quorum.tessera.privacygroup.ResidentGroupHandler in project tessera by ConsenSys.

the class ResidentGroupHandlerProviderTest method provider.

@Test
public void provider() {
    PrivacyGroupManager privacyGroupManager = mock(PrivacyGroupManager.class);
    try (var privacyGroupManagerMockedStatic = mockStatic(PrivacyGroupManager.class)) {
        privacyGroupManagerMockedStatic.when(PrivacyGroupManager::create).thenReturn(privacyGroupManager);
        ResidentGroupHandler result = ResidentGroupHandlerProvider.provider();
        assertThat(result).isNotNull();
        privacyGroupManagerMockedStatic.verify(PrivacyGroupManager::create);
        privacyGroupManagerMockedStatic.verifyNoMoreInteractions();
        verifyNoInteractions(privacyGroupManager);
    }
}
Also used : PrivacyGroupManager(com.quorum.tessera.privacygroup.PrivacyGroupManager) ResidentGroupHandler(com.quorum.tessera.privacygroup.ResidentGroupHandler) Test(org.junit.Test)

Example 2 with ResidentGroupHandler

use of com.quorum.tessera.privacygroup.ResidentGroupHandler in project tessera by ConsenSys.

the class ResidentGroupHandlerImplTest method create.

@Test
public void create() {
    final ServiceLoader<ResidentGroupHandler> serviceLoader = mock(ServiceLoader.class);
    final ResidentGroupHandler residentGroupHandler = mock(ResidentGroupHandler.class);
    final ServiceLoader.Provider<ResidentGroupHandler> provider = mock(ServiceLoader.Provider.class);
    when(provider.get()).thenReturn(residentGroupHandler);
    when(serviceLoader.stream()).thenReturn(Stream.of(provider));
    ResidentGroupHandler result;
    try (var serviceLoaderMockedStatic = mockStatic(ServiceLoader.class)) {
        serviceLoaderMockedStatic.when(() -> ServiceLoader.load(ResidentGroupHandler.class)).thenReturn(serviceLoader);
        result = ResidentGroupHandler.create();
        serviceLoaderMockedStatic.verify(() -> ServiceLoader.load(ResidentGroupHandler.class));
        serviceLoaderMockedStatic.verifyNoMoreInteractions();
    }
    assertThat(result).isSameAs(residentGroupHandler);
}
Also used : ServiceLoader(java.util.ServiceLoader) ResidentGroupHandler(com.quorum.tessera.privacygroup.ResidentGroupHandler) Test(org.junit.Test)

Example 3 with ResidentGroupHandler

use of com.quorum.tessera.privacygroup.ResidentGroupHandler in project tessera by ConsenSys.

the class Main method main.

public static void main(final String... args) throws Exception {
    Security.addProvider(new BouncyCastleProvider());
    LOGGER.debug("args [{}]", String.join(",", args));
    try {
        PicoCliDelegate picoCliDelegate = new PicoCliDelegate();
        LOGGER.debug("Execute PicoCliDelegate with args [{}]", String.join(",", args));
        final CliResult cliResult = picoCliDelegate.execute(args);
        LOGGER.debug("Executed PicoCliDelegate with args [{}].", String.join(",", args));
        if (cliResult.isSuppressStartup()) {
            System.exit(0);
        }
        if (cliResult.getStatus() != 0) {
            System.exit(cliResult.getStatus());
        }
        final Config config = cliResult.getConfig().orElseThrow(() -> new NoSuchElementException("No config found. Tessera will not run."));
        // Start legacy spring profile stuff
        final String springProfileWarning = "Warn: Spring profiles will not be supported in future. To start in recover mode use 'tessera recover'";
        if (System.getProperties().containsKey("spring.profiles.active")) {
            System.out.println(springProfileWarning);
            config.setRecoveryMode(System.getProperty("spring.profiles.active").contains("enable-sync-poller"));
        } else if (System.getenv().containsKey("SPRING_PROFILES_ACTIVE")) {
            System.out.println(springProfileWarning);
            config.setRecoveryMode(System.getenv("SPRING_PROFILES_ACTIVE").contains("enable-sync-poller"));
        }
        // end spring profile stuff
        LOGGER.debug("Storing config {}", config);
        ConfigFactory.create().store(config);
        LOGGER.debug("Stored config {}", config);
        LOGGER.debug("Creating enclave");
        final Enclave enclave = Enclave.create();
        LOGGER.debug("Created enclave {}", enclave);
        LOGGER.debug("Creating RuntimeContext");
        final RuntimeContext runtimeContext = RuntimeContext.getInstance();
        LOGGER.debug("Created RuntimeContext {}", runtimeContext);
        LOGGER.debug("Creating Discovery");
        Discovery discovery = Discovery.create();
        discovery.onCreate();
        LOGGER.debug("Created Discovery {}", discovery);
        if (runtimeContext.isMultiplePrivateStates()) {
            LOGGER.debug("Creating ResidentGroupHandler");
            ResidentGroupHandler residentGroupHandler = ResidentGroupHandler.create();
            residentGroupHandler.onCreate(config);
            LOGGER.debug("Created ResidentGroupHandler {}", residentGroupHandler);
        }
        LOGGER.debug("Creating EncodedPayloadManager");
        EncodedPayloadManager.create();
        LOGGER.debug("Created EncodedPayloadManager");
        LOGGER.debug("Creating BatchResendManager");
        BatchResendManager.create();
        LOGGER.debug("Created BatchResendManager");
        LOGGER.debug("Creating txn manager");
        TransactionManager transactionManager = TransactionManager.create();
        LOGGER.debug("Created txn manager");
        LOGGER.debug("Validating if transaction table exists");
        if (!transactionManager.upcheck()) {
            throw new RuntimeException("The database has not been setup correctly. Please ensure transaction tables " + "are present and correct");
        }
        LOGGER.debug("Creating ScheduledServiceFactory");
        ScheduledServiceFactory scheduledServiceFactory = ScheduledServiceFactory.fromConfig(config);
        scheduledServiceFactory.build();
        LOGGER.debug("Created ScheduledServiceFactory");
        LOGGER.debug("Creating Launcher");
        final List<TesseraServer> tesseraServers = Launcher.create(runtimeContext.isRecoveryMode()).launchServer(config);
        LOGGER.debug("Created Launcher");
        if (config.getOutputServerURIPath() != null) {
            ServerURIFileWriter.writeURIFile(config.getOutputServerURIPath(), tesseraServers);
        }
    } catch (final ConstraintViolationException ex) {
        for (final ConstraintViolation<?> violation : ex.getConstraintViolations()) {
            System.err.println("ERROR: Config validation issue: " + violation.getPropertyPath() + " " + violation.getMessage());
        }
        System.exit(1);
    } catch (final ConfigException ex) {
        LOGGER.debug("", ex);
        final Throwable cause = ExceptionUtils.getRootCause(ex);
        if (JsonException.class.isInstance(cause)) {
            System.err.println("ERROR: Invalid json, cause is " + cause.getMessage());
        } else {
            System.err.println("ERROR: Configuration exception, cause is " + Objects.toString(cause));
        }
        System.exit(3);
    } catch (final CliException ex) {
        LOGGER.debug("", ex);
        System.err.println("ERROR: CLI exception, cause is " + ex.getMessage());
        System.exit(4);
    } catch (final ServiceConfigurationError ex) {
        LOGGER.debug("", ex);
        Optional<Throwable> e = Optional.of(ex);
        e.map(Throwable::getMessage).ifPresent(System.err::println);
        // get root cause
        while (e.map(Throwable::getCause).isPresent()) {
            e = e.map(Throwable::getCause);
        }
        e.map(Throwable::toString).ifPresent(System.err::println);
        System.exit(5);
    } catch (final Throwable ex) {
        LOGGER.debug(null, ex);
        if (Arrays.asList(args).contains("--debug")) {
            ex.printStackTrace();
        } else {
            if (Optional.ofNullable(ex.getMessage()).isPresent()) {
                System.err.println("ERROR: Cause is " + ex.getMessage());
            } else {
                System.err.println("ERROR: In class " + ex.getClass().getSimpleName());
            }
        }
        System.exit(2);
    }
}
Also used : JsonException(jakarta.json.JsonException) Config(com.quorum.tessera.config.Config) ResidentGroupHandler(com.quorum.tessera.privacygroup.ResidentGroupHandler) Discovery(com.quorum.tessera.discovery.Discovery) ConfigException(com.quorum.tessera.config.ConfigException) TesseraServer(com.quorum.tessera.server.TesseraServer) PicoCliDelegate(com.quorum.tessera.config.cli.PicoCliDelegate) CliException(com.quorum.tessera.cli.CliException) CliResult(com.quorum.tessera.cli.CliResult) Enclave(com.quorum.tessera.enclave.Enclave) TransactionManager(com.quorum.tessera.transaction.TransactionManager) ConstraintViolation(jakarta.validation.ConstraintViolation) ConstraintViolationException(jakarta.validation.ConstraintViolationException) RuntimeContext(com.quorum.tessera.context.RuntimeContext) BouncyCastleProvider(org.bouncycastle.jce.provider.BouncyCastleProvider)

Aggregations

ResidentGroupHandler (com.quorum.tessera.privacygroup.ResidentGroupHandler)3 Test (org.junit.Test)2 CliException (com.quorum.tessera.cli.CliException)1 CliResult (com.quorum.tessera.cli.CliResult)1 Config (com.quorum.tessera.config.Config)1 ConfigException (com.quorum.tessera.config.ConfigException)1 PicoCliDelegate (com.quorum.tessera.config.cli.PicoCliDelegate)1 RuntimeContext (com.quorum.tessera.context.RuntimeContext)1 Discovery (com.quorum.tessera.discovery.Discovery)1 Enclave (com.quorum.tessera.enclave.Enclave)1 PrivacyGroupManager (com.quorum.tessera.privacygroup.PrivacyGroupManager)1 TesseraServer (com.quorum.tessera.server.TesseraServer)1 TransactionManager (com.quorum.tessera.transaction.TransactionManager)1 JsonException (jakarta.json.JsonException)1 ConstraintViolation (jakarta.validation.ConstraintViolation)1 ConstraintViolationException (jakarta.validation.ConstraintViolationException)1 ServiceLoader (java.util.ServiceLoader)1 BouncyCastleProvider (org.bouncycastle.jce.provider.BouncyCastleProvider)1