| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /**
- * Local-only: sign up one user on briven-engine (public tenant).
- *
- * Multitenancy createTenant needs SuperTokens LICENSE_KEY (free key available
- * from SuperTokens). Until set, isolation can use public + project metadata,
- * or set BRIVEN_ENGINE_LICENSE_KEY on the engine container.
- *
- * cd apps/api
- * BRIVEN_ENGINE_CONNECTION_URI=http://127.0.0.1:3567 bun scripts/briven-engine-signup-smoke.mjs
- */
- import SuperTokens from 'supertokens-node';
- import EmailPassword from 'supertokens-node/recipe/emailpassword';
- import Session from 'supertokens-node/recipe/session';
- const connectionURI = (
- process.env.BRIVEN_ENGINE_CONNECTION_URI || 'http://127.0.0.1:3567'
- ).replace(/\/$/, '');
- const email = `e2e_${Date.now()}@example.com`;
- const password = 'E2eTest!Pass99';
- const tenantId = 'public';
- console.log('engine', connectionURI);
- console.log('tenant', tenantId);
- console.log('email', email);
- const hello = await fetch(`${connectionURI}/hello`);
- const helloText = await hello.text();
- if (!hello.ok || !/hello/i.test(helloText)) {
- console.error('FAIL core hello', hello.status, helloText);
- process.exit(1);
- }
- console.log('✔ core hello', helloText.trim());
- SuperTokens.init({
- supertokens: { connectionURI },
- appInfo: {
- appName: 'Briven Auth e2e',
- apiDomain: 'http://localhost:3001',
- websiteDomain: 'http://localhost:3000',
- apiBasePath: '/v1/auth-core/fdi',
- websiteBasePath: '/auth',
- },
- recipeList: [Session.init(), EmailPassword.init()],
- });
- const signup = await EmailPassword.signUp(tenantId, email, password);
- console.log('signup status', signup.status);
- if (signup.status !== 'OK') {
- console.error('FAIL signup', signup);
- process.exit(1);
- }
- console.log('✔ userId', signup.user.id);
- console.log('✔ briven-engine local sign-up proof OK');
- process.exit(0);
|