* Integrations Refactoring - WIP * integrations list & edit - WIP * Fix integration store binding issue * integrations refactor - WIP * Form integration - WIP * Form integration Edit - WIP * Integration Refactor - Slack - WIP * Integration Refactor - Discord - WIP * Integration Refactor - Webhook - WIP * Integration Refactor - Send Submission Confirmation - WIP * Integration Refactor - Backend handler - WIP * Form Integration Status field * Integration Refactor - Backend SubmissionConfirmation - WIP * IntegrationMigration Command * skip confirmation email test case * Small refactoring * FormIntegration status active/inactive * formIntegrationData to integrationData * Rename file name with Integration suffix for integration realted files * Loader on form integrations * WIP * form integration test case * WIP * Added Integration card - working on refactoring * change location for IntegrationCard and update package file * Form Integration Create/Edit in single Modal * Remove integration extra pages * crisp_help_page_slug for integration json * integration logic as collapse * UI improvements * WIP * Trying to debug vue devtools * WIP for integrations * getIntegrationHandler change namespace name * useForm for integration fields + validation structure * Integration Test case & apply validation rules * Apply useform changes to integration other files * validation rules for FormNotificationsMessageActions fields * Zapier integration as coming soon * Update FormCleaner * set default settings for confirmation integration * WIP * Finish validation for all integrations * Updated purify, added integration formatData * Fix testcase * Ran pint; working on integration errors * Handle integration events * command for Delete Old Integration Events * Display Past Events in Modal * on Integration event create with status error send email to form creator * Polish styling * Minor improvements * Finish badge and integration status * Fix tests and add an integration event test * Lint --------- Co-authored-by: Julien Nahum <julien@nahum.net>
237 lines
6.3 KiB
PHP
237 lines
6.3 KiB
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use App\Models\Forms\Form;
|
|
use App\Models\User;
|
|
use App\Models\Workspace;
|
|
use Database\Factories\FormFactory;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Str;
|
|
|
|
trait TestHelpers
|
|
{
|
|
/**
|
|
* Creates a workspace for a user
|
|
*/
|
|
public function createUserWorkspace(User $user)
|
|
{
|
|
if (!$user) {
|
|
return null;
|
|
}
|
|
|
|
$workspace = Workspace::create([
|
|
'name' => 'Form Testing',
|
|
'icon' => '🧪',
|
|
]);
|
|
|
|
$user->workspaces()->sync([
|
|
$workspace->id => [
|
|
'role' => 'admin',
|
|
],
|
|
], false);
|
|
|
|
return $workspace;
|
|
}
|
|
|
|
/**
|
|
* Generates a Form instance (not saved)
|
|
*
|
|
* @return array
|
|
*/
|
|
public function makeForm(User $user, Workspace $workspace, array $data = [])
|
|
{
|
|
$dbProperties = [
|
|
[
|
|
'name' => 'Name',
|
|
'type' => 'text',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
],
|
|
[
|
|
'name' => 'Message',
|
|
'type' => 'text',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
'multi_lines' => true,
|
|
],
|
|
[
|
|
'name' => 'Number',
|
|
'type' => 'number',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
],
|
|
[
|
|
'name' => 'Rating',
|
|
'type' => 'rating',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
'rating_max_value' => 5
|
|
],
|
|
[
|
|
'name' => 'Scale',
|
|
'type' => 'scale',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
'scale_min_value' => 1,
|
|
'scale_max_value' => 10,
|
|
'scale_step_value' => 1,
|
|
],
|
|
[
|
|
'name' => 'Slider',
|
|
'type' => 'slider',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
'slider_min_value' => 1,
|
|
'slider_max_value' => 100,
|
|
'slider_step_value' => 1,
|
|
],
|
|
[
|
|
'name' => 'Select',
|
|
'type' => 'select',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
'allow_creation' => false,
|
|
'select' => [
|
|
'options' => [['id' => 'First', 'name' => 'First'], ['id' => 'Second', 'name' => 'Second']],
|
|
],
|
|
],
|
|
[
|
|
'name' => 'Multi Select',
|
|
'type' => 'multi_select',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
'allow_creation' => false,
|
|
'multi_select' => [
|
|
'options' => [['id' => 'One', 'name' => 'One'], ['id' => 'Two', 'name' => 'Two'], ['id' => 'Three', 'name' => 'Three']],
|
|
],
|
|
],
|
|
[
|
|
'name' => 'Date',
|
|
'type' => 'date',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
],
|
|
[
|
|
'name' => 'Checkbox',
|
|
'type' => 'checkbox',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
],
|
|
[
|
|
'name' => 'URL',
|
|
'type' => 'url',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
],
|
|
[
|
|
'name' => 'Email',
|
|
'type' => 'email',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
],
|
|
[
|
|
'name' => 'Phone Number',
|
|
'type' => 'phone_number',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
],
|
|
[
|
|
'name' => 'Files',
|
|
'type' => 'files',
|
|
'hidden' => false,
|
|
'required' => false,
|
|
],
|
|
];
|
|
|
|
return Form::factory()
|
|
->withProperties(FormFactory::formatProperties($dbProperties))
|
|
->forWorkspace($workspace)
|
|
->createdBy($user)
|
|
->make($data);
|
|
}
|
|
|
|
public function createForm(User $user, Workspace $workspace, array $data = [])
|
|
{
|
|
$form = $this->makeForm($user, $workspace, $data);
|
|
$form->save();
|
|
|
|
return $form;
|
|
}
|
|
|
|
public function createUser(array $data = [])
|
|
{
|
|
return \App\Models\User::factory()->create($data);
|
|
}
|
|
|
|
public function createProUser()
|
|
{
|
|
$user = $this->createUser();
|
|
|
|
$user->subscriptions()->create([
|
|
'name' => 'default',
|
|
'stripe_id' => Str::random(),
|
|
'stripe_status' => 'active',
|
|
'stripe_price' => Str::random(),
|
|
'quantity' => 1,
|
|
]);
|
|
|
|
return $user;
|
|
}
|
|
|
|
public function actingAsUser(?User $user = null)
|
|
{
|
|
if ($user == null) {
|
|
$user = $this->createUser();
|
|
}
|
|
|
|
$this->postJson('/login', [
|
|
'email' => $user->email,
|
|
'password' => 'password',
|
|
])->assertSuccessful();
|
|
|
|
return $user;
|
|
}
|
|
|
|
/**
|
|
* Creates a user with a Pro subscription
|
|
*
|
|
* @return User|\Illuminate\Database\Eloquent\Collection|\Illuminate\Database\Eloquent\Model|null
|
|
*/
|
|
public function actingAsProUser(?User $user = null)
|
|
{
|
|
if ($user == null) {
|
|
$user = $this->createProUser();
|
|
}
|
|
|
|
return $this->actingAsUser($user);
|
|
}
|
|
|
|
public function actingAsGuest()
|
|
{
|
|
if (Auth::check()) {
|
|
Auth::logout();
|
|
}
|
|
$this->assertGuest();
|
|
}
|
|
|
|
public function createFormIntegration($integrationId, $formId, $settings = [])
|
|
{
|
|
$data = [
|
|
'status' => true,
|
|
'integration_id' => $integrationId,
|
|
'logic' => null,
|
|
'settings' => $settings
|
|
];
|
|
|
|
$response = $this->postJson(route('open.forms.integration.create', $formId), $data)
|
|
->assertSuccessful()
|
|
->assertJson([
|
|
'type' => 'success',
|
|
'message' => 'Form Integration was created.'
|
|
]);
|
|
|
|
return (object) $response->json('form_integration.data');
|
|
}
|
|
}
|