mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-09-13 13:57:34 -04:00
* fix(tests): resolve all phpunit failures (#4626) Bring the phpunit suite from 153 failures to 0 (281 tests passing): - Employee: decouple grants block from save_value success; restructure save_employee new-employee + disallowed-grants early return - Sale: unify sales_payments_temp schema (add sale_cash_refund, reference_code) so both creators produce an identical superset table - Employees controller: provide placeholder password/hash in testing env so new-employee insert succeeds and grant logic is testable - TestDatabaseBootstrapSeeder: reset shared connection table-name cache after bootstrap reset to avoid stale listTables()/tableExists() results - Config: fix postSaveLocale validation rule syntax - Test data: use unique employee usernames to avoid UNIQUE constraint collisions latching strict-mode transStatus=false on the shared conn - Various test-file and language-string corrections * test: consolidate employee fixtures in shared trait Route test employee creation through a single EmployeeFixtureTrait that delegates to Employee::save_employee(), so fixtures exercise the same production code path instead of raw DB inserts. Removes six near-duplicate helpers across EmployeeTest, SalesControllerTest, and EmployeesControllerTest while preserving each test's specific grant set. Closes a piece of the fixture-scattering flagged in #4626. Closes #4626 * test: add global DROP/CREATE grant and commit theme fixtures * fix(ci): remove redundant symlink step, set working encryption key * fix(ci): run phpunit with --no-coverage to avoid no-driver warning * fix: address code review findings - Config: restore strict locale validation (min required|integer|>0) and fix max cross-field check with a new gte_field rule (CI4's greater_than_equal_to[field] does not resolve the field value) - Tests: assert rejection for non-numeric/zero/negative/min>max limits - .env.example: remove shared hard-coded encryption.key (auto-generates); document Docker env-var usage - phpunit.yml: scope CREATE/DROP grant to ospos_test.* and provision a per-run encryption key as an env var * feat: support ENCRYPTION_KEY env var for encryption key Read ENCRYPTION_KEY as a fallback for the encryption key when the config value is empty. This is a supported, reliable path for Docker / container deploys and CI, avoiding reliance on the raw dotted encryption.key env var. * fix: align Summary_report temp tables with Sale temp table schema Summary_report created sales_items_taxes_temp and sales_payments_temp with fewer columns than the canonical create_temp_table() in Sale.php. A later reader expecting those columns hit a schema-mismatch SQL error on the shared temp tables. Add internal_tax/sales_tax (sales_items_taxes_temp) and reference_code (sales_payments_temp) so all creators emit the identical column set.
374 lines
13 KiB
PHP
374 lines
13 KiB
PHP
<?php
|
|
|
|
namespace Tests\Controllers;
|
|
|
|
use CodeIgniter\Database\Config;
|
|
use CodeIgniter\Test\CIUnitTestCase;
|
|
use CodeIgniter\Test\DatabaseTestTrait;
|
|
use CodeIgniter\Test\FeatureTestTrait;
|
|
use CodeIgniter\Config\Services;
|
|
use App\Models\Employee;
|
|
use App\Models\Module;
|
|
use Tests\Support\EmployeeFixtureTrait;
|
|
|
|
class EmployeesControllerTest extends CIUnitTestCase
|
|
{
|
|
use DatabaseTestTrait;
|
|
use FeatureTestTrait;
|
|
use EmployeeFixtureTrait;
|
|
|
|
protected $migrate = true;
|
|
protected $migrateOnce = true;
|
|
protected $refresh = false;
|
|
protected $namespace = null;
|
|
|
|
protected $priorDisallowGrantChange;
|
|
|
|
private static bool $doneBootstrap = false;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
// Reset the test database to a known clean schema on the first test in
|
|
// this class so stale employees from prior runs (whose usernames are
|
|
// unique-key bound and whose grant sets leak into these assertions)
|
|
// cannot contaminate the assertions below.
|
|
if (self::$doneBootstrap === false) {
|
|
Config::seeder($this->DBGroup)->call('App\Database\Seeds\TestDatabaseBootstrapSeeder');
|
|
Config::connect($this->DBGroup)->close();
|
|
|
|
self::$doneBootstrap = true;
|
|
}
|
|
|
|
parent::setUp();
|
|
// Reset any stale transaction state left on the shared in-process DB
|
|
// connection by a previous test (e.g. a failed transaction rollback in
|
|
// strict mode sets transStatus=false and poisons save_employee here).
|
|
$this->db->resetTransStatus();
|
|
$this->priorDisallowGrantChange = getenv('DISALLOW_GRANT_CHANGE');
|
|
putenv('DISALLOW_GRANT_CHANGE=false');
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
if ($this->priorDisallowGrantChange === false) {
|
|
putenv('DISALLOW_GRANT_CHANGE');
|
|
} else {
|
|
putenv('DISALLOW_GRANT_CHANGE=' . $this->priorDisallowGrantChange);
|
|
}
|
|
parent::tearDown();
|
|
}
|
|
|
|
protected function createNonAdminEmployee(): int
|
|
{
|
|
return $this->createEmployee(
|
|
first_name: 'NonAdmin',
|
|
last_name: 'User',
|
|
email: 'nonadmin' . uniqid() . '@test.com',
|
|
username: 'nonadmin_' . uniqid(),
|
|
phone_number: '555-1234',
|
|
grants: [
|
|
['permission_id' => 'employees', 'menu_group' => 'home'],
|
|
['permission_id' => 'customers', 'menu_group' => 'home'],
|
|
['permission_id' => 'sales', 'menu_group' => 'home'],
|
|
],
|
|
);
|
|
}
|
|
|
|
protected function loginAsAdmin(): void
|
|
{
|
|
$this->withSession(['person_id' => 1, 'menu_group' => 'office']);
|
|
}
|
|
|
|
protected function loginAsNonAdmin(int $personId): void
|
|
{
|
|
$this->withSession(['person_id' => $personId, 'menu_group' => 'home']);
|
|
}
|
|
|
|
public function testNonAdminCannotViewAdminAccount(): void
|
|
{
|
|
$nonAdminId = $this->createNonAdminEmployee();
|
|
$this->loginAsNonAdmin($nonAdminId);
|
|
|
|
$response = $this->get('/employees/view/1');
|
|
|
|
$response->assertRedirect();
|
|
$this->assertStringContainsString('no_access', $response->getRedirectUrl());
|
|
}
|
|
|
|
public function testNonAdminCannotModifyAdminAccount(): void
|
|
{
|
|
$nonAdminId = $this->createNonAdminEmployee();
|
|
$this->loginAsNonAdmin($nonAdminId);
|
|
|
|
$response = $this->post('/employees/save/1', [
|
|
'first_name' => 'Hacked',
|
|
'last_name' => 'Admin',
|
|
'email' => 'hacked@evil.com',
|
|
'username' => 'admin'
|
|
]);
|
|
|
|
$response->assertStatus(200);
|
|
$result = json_decode($response->getJSON(), true);
|
|
$this->assertFalse($result['success']);
|
|
$this->assertStringContainsString('admin', strtolower($result['message']));
|
|
}
|
|
|
|
public function testNonAdminCannotDeleteAdminAccount(): void
|
|
{
|
|
$nonAdminId = $this->createNonAdminEmployee();
|
|
$this->loginAsNonAdmin($nonAdminId);
|
|
|
|
$response = $this->post('/employees/delete', [
|
|
'ids' => ['1']
|
|
]);
|
|
|
|
$response->assertStatus(200);
|
|
$result = json_decode($response->getJSON(), true);
|
|
$this->assertFalse($result['success']);
|
|
$this->assertStringContainsString('admin', strtolower($result['message']));
|
|
}
|
|
|
|
public function testNonAdminCannotGrantPermissionsTheyDontHave(): void
|
|
{
|
|
$nonAdminId = $this->createNonAdminEmployee();
|
|
$this->loginAsNonAdmin($nonAdminId);
|
|
|
|
$targetEmployeeId = $this->createEmployee(email: 'test@test.com', username: 'testuser');
|
|
|
|
$response = $this->post('/employees/save/' . $targetEmployeeId, [
|
|
'first_name' => 'Test',
|
|
'last_name' => 'Employee',
|
|
'email' => 'test@test.com',
|
|
'username' => 'testuser',
|
|
'language' => 'en:english',
|
|
'grant_config' => 'config',
|
|
'grant_giftcards' => 'giftcards'
|
|
]);
|
|
|
|
$employeeModel = model(Employee::class);
|
|
$hasConfigGrant = $employeeModel->has_grant('config', $targetEmployeeId);
|
|
$hasGiftcardsGrant = $employeeModel->has_grant('giftcards', $targetEmployeeId);
|
|
|
|
$this->assertFalse($hasConfigGrant);
|
|
$this->assertFalse($hasGiftcardsGrant);
|
|
}
|
|
|
|
public function testAdminCanModifyAnyAccount(): void
|
|
{
|
|
$nonAdminId = $this->createNonAdminEmployee();
|
|
$this->loginAsAdmin();
|
|
|
|
$response = $this->post('/employees/save/' . $nonAdminId, [
|
|
'first_name' => 'Modified',
|
|
'last_name' => 'User',
|
|
'email' => 'modified@test.com',
|
|
'username' => 'modified',
|
|
'language' => 'en:english'
|
|
]);
|
|
|
|
$response->assertStatus(200);
|
|
$result = json_decode($response->getJSON(), true);
|
|
$this->assertTrue($result['success']);
|
|
}
|
|
|
|
public function testAdminCanDeleteAnyAccount(): void
|
|
{
|
|
$nonAdminId = $this->createNonAdminEmployee();
|
|
$this->loginAsAdmin();
|
|
|
|
$response = $this->post('/employees/delete', [
|
|
'ids' => [(string)$nonAdminId]
|
|
]);
|
|
|
|
$response->assertStatus(200);
|
|
$result = json_decode($response->getJSON(), true);
|
|
$this->assertTrue($result['success']);
|
|
}
|
|
|
|
public function testUserCanModifyOwnAccount(): void
|
|
{
|
|
$nonAdminId = $this->createNonAdminEmployee();
|
|
$this->loginAsNonAdmin($nonAdminId);
|
|
|
|
$response = $this->post('/employees/save/' . $nonAdminId, [
|
|
'first_name' => 'Modified',
|
|
'last_name' => 'OwnAccount',
|
|
'email' => 'own@test.com',
|
|
'username' => 'owned',
|
|
'language' => 'en:english'
|
|
]);
|
|
|
|
$response->assertStatus(200);
|
|
$result = json_decode($response->getJSON(), true);
|
|
$this->assertTrue($result['success']);
|
|
}
|
|
|
|
public function testPermissionDelegationRule(): void
|
|
{
|
|
$permissionsRequested = ['customers', 'employees', 'sales', 'config'];
|
|
$userPermissions = ['customers', 'sales'];
|
|
$isAdmin = false;
|
|
|
|
$granted = [];
|
|
foreach ($permissionsRequested as $perm) {
|
|
if ($isAdmin || in_array($perm, $userPermissions)) {
|
|
$granted[] = $perm;
|
|
}
|
|
}
|
|
|
|
$this->assertEquals(['customers', 'sales'], $granted);
|
|
}
|
|
|
|
public function testAdminCanGrantAnyPermission(): void
|
|
{
|
|
$employeeId = $this->createNonAdminEmployee();
|
|
$this->loginAsAdmin();
|
|
|
|
putenv('DISALLOW_GRANT_CHANGE=false');
|
|
|
|
$permissionsRequested = ['customers', 'employees', 'sales', 'config'];
|
|
|
|
$postData = [
|
|
'first_name' => 'NonAdmin',
|
|
'last_name' => 'User',
|
|
'email' => 'nonadmin@test.com',
|
|
'username' => 'grantany' . uniqid(),
|
|
'language' => 'en:english'
|
|
];
|
|
foreach ($permissionsRequested as $perm) {
|
|
$postData['grant_' . $perm] = $perm;
|
|
}
|
|
|
|
$response = $this->post('/employees/save/' . $employeeId, $postData);
|
|
|
|
$response->assertStatus(200);
|
|
$result = json_decode($response->getJSON(), true);
|
|
$this->assertTrue($result['success']);
|
|
|
|
$employeeModel = model(Employee::class);
|
|
foreach ($permissionsRequested as $perm) {
|
|
$this->assertTrue($employeeModel->has_grant($perm, $employeeId));
|
|
}
|
|
}
|
|
|
|
public function testGrantChangeRequestFailsWhenGrantChangeDisallowed(): void
|
|
{
|
|
// Target holds customers+sales but NOT employees, so requesting the
|
|
// employees grant is a genuine change that DISALLOW_GRANT_CHANGE=true
|
|
// must reject (leaving the grant set untouched).
|
|
$unique = uniqid();
|
|
$employeeId = $this->createEmployee(
|
|
email: "disallow{$unique}@test.com",
|
|
username: "disallow{$unique}",
|
|
grants: [
|
|
['permission_id' => 'customers', 'menu_group' => 'home'],
|
|
['permission_id' => 'sales', 'menu_group' => 'home'],
|
|
],
|
|
);
|
|
$this->loginAsAdmin();
|
|
|
|
putenv('DISALLOW_GRANT_CHANGE=true');
|
|
|
|
$response = $this->post('/employees/save/' . $employeeId, [
|
|
'first_name' => 'NonAdmin',
|
|
'last_name' => 'User',
|
|
'email' => "disallow{$unique}@test.com",
|
|
'username' => "disallow{$unique}",
|
|
'language' => 'en:english',
|
|
'grant_employees' => 'employees'
|
|
]);
|
|
|
|
$response->assertStatus(200);
|
|
$result = json_decode($response->getJSON(), true);
|
|
$this->assertFalse($result['success']);
|
|
|
|
$employeeModel = model(Employee::class);
|
|
$this->assertTrue($employeeModel->has_grant('customers', $employeeId));
|
|
$this->assertTrue($employeeModel->has_grant('sales', $employeeId));
|
|
$this->assertFalse($employeeModel->has_grant('employees', $employeeId));
|
|
}
|
|
|
|
public function testNewEmployeeCreationWithGrantsFailsWhenGrantChangeDisallowed(): void
|
|
{
|
|
$this->loginAsAdmin();
|
|
|
|
putenv('DISALLOW_GRANT_CHANGE=true');
|
|
|
|
$response = $this->post('/employees/save', [
|
|
'first_name' => 'Brand',
|
|
'last_name' => 'New',
|
|
'email' => 'brandnew@test.com',
|
|
'username' => 'brandnew',
|
|
'password' => 'password123',
|
|
'grant_customers' => 'customers'
|
|
]);
|
|
|
|
$response->assertStatus(200);
|
|
$result = json_decode($response->getJSON(), true);
|
|
$this->assertFalse($result['success']);
|
|
|
|
$createdEmployee = $this->db->table('employees')->where('username', 'brandnew')->get()->getRow();
|
|
$this->assertNull($createdEmployee);
|
|
}
|
|
|
|
public function testGrantChangeRequestSucceedsWhenGrantChangeAllowed(): void
|
|
{
|
|
$employeeId = $this->createNonAdminEmployee();
|
|
$this->loginAsAdmin();
|
|
|
|
putenv('DISALLOW_GRANT_CHANGE=false');
|
|
|
|
$response = $this->post('/employees/save/' . $employeeId, [
|
|
'first_name' => 'NonAdmin',
|
|
'last_name' => 'User',
|
|
'email' => 'nonadmin@test.com',
|
|
'username' => 'grantsucc',
|
|
'language' => 'en:english',
|
|
'grant_employees' => 'employees'
|
|
]);
|
|
|
|
$response->assertStatus(200);
|
|
$result = json_decode($response->getJSON(), true);
|
|
$this->assertTrue($result['success']);
|
|
|
|
$employeeModel = model(Employee::class);
|
|
$this->assertTrue($employeeModel->has_grant('employees', $employeeId));
|
|
$this->assertFalse($employeeModel->has_grant('customers', $employeeId));
|
|
$this->assertFalse($employeeModel->has_grant('sales', $employeeId));
|
|
}
|
|
|
|
public function testNewEmployeeCreationWithGrantsSucceedsWhenGrantChangeAllowed(): void
|
|
{
|
|
$this->loginAsAdmin();
|
|
|
|
putenv('DISALLOW_GRANT_CHANGE=false');
|
|
|
|
$response = $this->post('/employees/save', [
|
|
'first_name' => 'Brand',
|
|
'last_name' => 'New2',
|
|
'email' => 'brandnew2@test.com',
|
|
'phone_number' => '555-1234',
|
|
'address_1' => '',
|
|
'address_2' => '',
|
|
'city' => '',
|
|
'state' => '',
|
|
'zip' => '',
|
|
'country' => '',
|
|
'comments' => '',
|
|
'username' => 'brandnew2',
|
|
'password' => 'password123',
|
|
'language' => 'en:english',
|
|
'grant_customers' => 'customers'
|
|
]);
|
|
|
|
$response->assertStatus(200);
|
|
$result = json_decode($response->getJSON(), true);
|
|
$this->assertTrue($result['success']);
|
|
|
|
$createdEmployee = $this->db->table('employees')->where('username', 'brandnew2')->get()->getRow();
|
|
$this->assertNotNull($createdEmployee);
|
|
|
|
$employeeModel = model(Employee::class);
|
|
$this->assertTrue($employeeModel->has_grant('customers', (int) $createdEmployee->person_id));
|
|
}
|
|
} |