1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/tests/Feature/UserTest.php

470 lines
14 KiB
PHP
Raw Normal View History

2019-06-17 01:58:33 +02:00
<?php
2020-09-14 13:11:46 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-14 13:11:46 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-09-14 13:11:46 +02:00
*/
2020-10-28 11:10:49 +01:00
namespace Tests\Feature;
2019-06-17 01:58:33 +02:00
2023-05-09 05:37:53 +02:00
use Tests\TestCase;
use App\Models\User;
use App\Models\Account;
2019-06-17 01:58:33 +02:00
use App\Models\Company;
2023-05-09 05:37:53 +02:00
use Tests\MockAccountData;
use App\Models\CompanyUser;
2023-05-09 05:37:53 +02:00
use App\Models\CompanyToken;
use App\DataMapper\CompanySettings;
use App\Factory\CompanyUserFactory;
2019-06-17 01:58:33 +02:00
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Session;
2023-05-09 05:37:53 +02:00
use App\Http\Middleware\PasswordProtection;
use Illuminate\Validation\ValidationException;
2023-05-09 05:37:53 +02:00
use Illuminate\Routing\Middleware\ThrottleRequests;
use Illuminate\Foundation\Testing\DatabaseTransactions;
2019-06-17 01:58:33 +02:00
/**
* @test
2019-06-17 01:58:33 +02:00
* @covers App\Http\Controllers\UserController
*/
2019-06-17 01:58:33 +02:00
class UserTest extends TestCase
{
use MockAccountData;
use DatabaseTransactions;
private $default_email = 'attach@gmail.com';
2023-08-12 04:40:41 +02:00
public $faker;
protected function setUp() :void
2019-06-17 01:58:33 +02:00
{
parent::setUp();
Session::start();
$this->faker = \Faker\Factory::create();
2020-06-27 06:09:16 +02:00
$this->makeTestData();
2019-06-17 01:58:33 +02:00
Model::reguard();
2023-08-12 04:40:41 +02:00
// $this->withoutExceptionHandling();
2020-06-27 06:09:16 +02:00
$this->withoutMiddleware(
ThrottleRequests::class,
PasswordProtection::class
);
2019-06-17 01:58:33 +02:00
}
2023-08-12 04:40:41 +02:00
private function mockAccout()
2023-05-09 05:01:27 +02:00
{
2023-08-12 04:40:41 +02:00
$account = Account::factory()->create([
'hosted_client_count' => 1000,
'hosted_company_count' => 1000,
]);
$account->num_users = 3;
$account->save();
$user = User::factory()->create([
'account_id' => $this->account->id,
'confirmation_code' => 'xyz123',
'email' => $this->faker->unique()->safeEmail(),
]);
$settings = CompanySettings::defaults();
$settings->client_online_payment_notification = false;
$settings->client_manual_payment_notification = false;
$company = Company::factory()->create([
'account_id' => $account->id,
'settings' => $settings,
]);
$cu = CompanyUserFactory::create($user->id, $company->id, $account->id);
$cu->is_owner = true;
$cu->is_admin = true;
$cu->is_locked = false;
$cu->save();
$token = \Illuminate\Support\Str::random(64);
$company_token = new CompanyToken();
$company_token->user_id = $user->id;
$company_token->company_id = $company->id;
$company_token->account_id = $account->id;
$company_token->name = 'test token';
$company_token->token = $token;
$company_token->is_system = true;
}
public function testUserAttemptingtToDeleteThemselves()
{
2023-05-09 05:37:53 +02:00
$account = Account::factory()->create([
'hosted_client_count' => 1000,
'hosted_company_count' => 1000,
]);
$account->num_users = 3;
$account->save();
$user = User::factory()->create([
'account_id' => $this->account->id,
'confirmation_code' => 'xyz123',
'email' => $this->faker->unique()->safeEmail(),
2023-08-12 04:40:41 +02:00
'password' => \Illuminate\Support\Facades\Hash::make('ALongAndBriliantPassword'),
2023-05-09 05:37:53 +02:00
]);
$settings = CompanySettings::defaults();
$settings->client_online_payment_notification = false;
$settings->client_manual_payment_notification = false;
$company = Company::factory()->create([
'account_id' => $account->id,
'settings' => $settings,
]);
$cu = CompanyUserFactory::create($user->id, $company->id, $account->id);
$cu->is_owner = true;
$cu->is_admin = true;
$cu->is_locked = false;
$cu->save();
$token = \Illuminate\Support\Str::random(64);
$company_token = new CompanyToken();
$company_token->user_id = $user->id;
$company_token->company_id = $company->id;
$company_token->account_id = $account->id;
$company_token->name = 'test token';
$company_token->token = $token;
$company_token->is_system = true;
2023-08-12 04:40:41 +02:00
$company_token->save();
2023-05-09 05:37:53 +02:00
$data = [
'ids' => [$user->hashed_id],
2023-08-12 04:40:41 +02:00
];
2023-05-09 05:01:27 +02:00
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
2023-05-09 05:37:53 +02:00
'X-API-TOKEN' => $token,
'X-API-PASSWORD' => 'ALongAndBriliantPassword',
2023-08-12 04:40:41 +02:00
])->postJson('/api/v1/users/bulk?action=delete', $data);
nlog($response);
2023-05-09 05:01:27 +02:00
2023-08-12 04:40:41 +02:00
$response->assertStatus(401);
2023-05-09 05:01:27 +02:00
}
2023-04-05 03:18:10 +02:00
public function testDisconnectUserOauthMailer()
{
$user =
User::factory()->create([
'account_id' => $this->account->id,
'email' => $this->faker->safeEmail(),
'oauth_user_id' => '123456789',
'oauth_provider_id' => '123456789',
]);
$response = $this->withHeaders([
'X-API-TOKEN' => $this->token,
])->post("/api/v1/users/{$user->hashed_id}/disconnect_mailer");
$response->assertStatus(200);
$user->fresh();
$this->assertNull($user->oauth_user_token);
$this->assertNull($user->oauth_user_refresh_token);
}
public function testUserFiltersWith()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
'X-API-PASSWORD' => 'ALongAndBriliantPassword',
])->get('/api/v1/users?with='.$this->user->hashed_id);
$response->assertStatus(200);
}
2019-06-17 01:58:33 +02:00
public function testUserList()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
'X-API-PASSWORD' => 'ALongAndBriliantPassword',
])->get('/api/v1/users');
2019-06-17 01:58:33 +02:00
$response->assertStatus(200);
}
2019-06-17 01:58:33 +02:00
2022-11-07 11:00:21 +01:00
public function testValidationRulesPhoneIsNull()
{
$this->withoutMiddleware(PasswordProtection::class);
$data = [
'first_name' => 'hey',
'last_name' => 'you',
'email' => 'bob1@good.ole.boys.com',
'company_user' => [
'is_admin' => false,
'is_owner' => false,
'permissions' => 'create_client,create_invoice',
],
'phone' => null,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
'X-API-PASSWORD' => 'ALongAndBriliantPassword',
])->post('/api/v1/users?include=company_user', $data);
$response->assertStatus(200);
}
public function testValidationRulesPhoneIsBlankString()
{
$this->withoutMiddleware(PasswordProtection::class);
$data = [
'first_name' => 'hey',
'last_name' => 'you',
'email' => 'bob1@good.ole.boys.com',
'company_user' => [
'is_admin' => false,
'is_owner' => false,
'permissions' => 'create_client,create_invoice',
],
'phone' => "",
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
'X-API-PASSWORD' => 'ALongAndBriliantPassword',
])->post('/api/v1/users?include=company_user', $data);
$response->assertStatus(200);
$arr = $response->json();
$user_id = $this->decodePrimaryKey($arr['data']['id']);
$user = User::find($user_id);
$data = [
'first_name' => 'hey',
'last_name' => 'you',
'email' => 'bob1@good.ole.boys.com',
'company_user' => [
'is_admin' => false,
'is_owner' => false,
'permissions' => 'create_client,create_invoice',
2023-08-04 10:13:26 +02:00
'notifications' => '',
2022-11-07 11:00:21 +01:00
],
'phone' => "",
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
'X-API-PASSWORD' => 'ALongAndBriliantPassword',
])->putJson('/api/v1/users/'.$user->hashed_id.'?include=company_user', $data);
}
public function testUserStore()
{
2020-06-27 06:09:16 +02:00
$this->withoutMiddleware(PasswordProtection::class);
$data = [
'first_name' => 'hey',
'last_name' => 'you',
2020-06-27 02:20:27 +02:00
'email' => 'bob1@good.ole.boys.com',
'company_user' => [
'is_admin' => false,
'is_owner' => false,
'permissions' => 'create_client,create_invoice',
2023-08-04 10:13:26 +02:00
'notifications' => '',
],
];
2019-06-17 01:58:33 +02:00
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
'X-API-PASSWORD' => 'ALongAndBriliantPassword',
])->post('/api/v1/users?include=company_user', $data);
2019-06-17 01:58:33 +02:00
$response->assertStatus(200);
$arr = $response->json();
2019-06-17 01:58:33 +02:00
$this->assertNotNull($arr['data']['company_user']);
}
2019-06-17 01:58:33 +02:00
2021-05-28 11:39:22 +02:00
public function testUserAttachAndDetach()
{
$this->withoutMiddleware(PasswordProtection::class);
$data = [
'first_name' => 'Test',
'last_name' => 'Palloni',
'email' => $this->default_email,
];
2021-05-28 11:39:22 +02:00
$response = false;
try {
$response = $this->withHeaders([
2021-05-28 11:39:22 +02:00
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
'X-API-PASSWORD' => 'ALongAndBriliantPassword',
])->post('/api/v1/users?include=company_user', $data);
2021-05-28 11:39:22 +02:00
} catch (ValidationException $e) {
$message = json_decode($e->validator->getMessageBag(), 1);
nlog($message);
var_dump($message);
$this->assertNotNull($message);
}
$response->assertStatus(200);
$arr = $response->json();
2021-05-28 11:39:22 +02:00
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
'X-API-PASSWORD' => 'ALongAndBriliantPassword',
])->delete('/api/v1/users/'.$arr['data']['id'].'/detach_from_company?include=company_user');
2021-05-28 11:39:22 +02:00
$response->assertStatus(200);
$user_id = $this->decodePrimaryKey($arr['data']['id']);
2021-05-28 11:39:22 +02:00
$cu = CompanyUser::whereUserId($user_id)->whereCompanyId($this->company->id)->first();
$ct = CompanyToken::whereUserId($user_id)->whereCompanyId($this->company->id)->first();
$user = User::find($user_id);
2021-05-28 11:39:22 +02:00
$this->assertNull($cu);
$this->assertNull($ct);
$this->assertNotNull($user);
}
public function testAttachUserToMultipleCompanies()
{
2020-06-27 06:09:16 +02:00
$this->withoutMiddleware(PasswordProtection::class);
/* Create New Company */
2020-10-01 12:49:47 +02:00
$company2 = Company::factory()->create([
'account_id' => $this->account->id,
]);
$company_token = new CompanyToken;
$company_token->user_id = $this->user->id;
$company_token->company_id = $company2->id;
$company_token->account_id = $this->account->id;
$company_token->name = 'test token';
$company_token->token = \Illuminate\Support\Str::random(64);
2021-11-09 23:11:56 +01:00
$company_token->is_system = true;
$company_token->save();
/*Manually link this user to the company*/
$cu = CompanyUserFactory::create($this->user->id, $company2->id, $this->account->id);
$cu->is_owner = true;
$cu->is_admin = true;
$cu->save();
/*Create New Blank User and Attach to Company 2*/
$data = [
'first_name' => 'Test',
'last_name' => 'Palloni',
'email' => $this->default_email,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $company_token->token,
])->post('/api/v1/users?include=company_user', $data);
$response->assertStatus(200);
// $this->assertNotNull($new_user->company_user);
// $this->assertEquals($new_user->company_user->company_id, $company2->id);
/*Create brand new user manually with company_user object and attach to a different company*/
$data = [
'first_name' => 'hey',
'last_name' => 'you',
'email' => 'bob@good.ole.boys.co2.com',
'company_user' => [
'is_admin' => false,
'is_owner' => false,
'permissions' => 'create_client,create_invoice',
],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $company_token->token,
])->post('/api/v1/users?include=company_user', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertNotNull($arr['data']['company_user']);
$this->assertFalse($arr['data']['company_user']['is_admin']);
$this->assertFalse($arr['data']['company_user']['is_owner']);
$this->assertEquals($arr['data']['company_user']['permissions'], 'create_client,create_invoice');
$user = User::whereEmail('bob@good.ole.boys.co2.com')->first();
$this->assertNotNull($user);
$cu = CompanyUser::whereUserId($user->id)->whereCompanyId($company2->id)->first();
$this->assertNotNull($cu);
/*Update the user permissions of this user*/
$data = [
'first_name' => 'Captain',
'last_name' => 'Morgain',
'email' => 'bob@good.ole.boys.co2.com',
'company_user' => [
'is_admin' => true,
'is_owner' => false,
'permissions' => 'create_invoice,create_invoice',
],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $company_token->token,
'X-API-PASSWORD' => 'ALongAndBriliantPassword',
])->put('/api/v1/users/'.$this->encodePrimaryKey($user->id).'?include=company_user', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertNotNull($arr['data']['company_user']);
$this->assertTrue($arr['data']['company_user']['is_admin']);
$this->assertFalse($arr['data']['company_user']['is_owner']);
$this->assertEquals($arr['data']['company_user']['permissions'], 'create_invoice,create_invoice');
}
}