Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
- Base: wintercms/winter branch 1.2 (full framework) - Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS - Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication - Partials: hero (offline-first), features, modes (offline/nube toggle), screenshots, pricing (3 planes), comparison, FAQ, CTA - Plugin VivesPOS.Site with ContactForm - Dockerfile: PHP 8.2 Apache, port 80, healthcheck - Added winter/wn-pages, blog, sitemap, seo plugins - Active theme set to vivespos
63 lines
1.7 KiB
PHP
63 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace System\Tests\Plugins\System;
|
|
|
|
use System\Tests\Bootstrap\PluginTestCase;
|
|
use Validator;
|
|
|
|
class CustomValidatorRulesTest extends PluginTestCase
|
|
{
|
|
public function setUp() : void
|
|
{
|
|
parent::setUp();
|
|
|
|
include_once base_path() . '/modules/system/tests/fixtures/plugins/winter/tester/rules/BeLikeBobRule.php';
|
|
include_once base_path() . '/modules/system/tests/fixtures/plugins/winter/tester/Plugin.php';
|
|
|
|
$this->runPluginRefreshCommand('Winter.Tester');
|
|
}
|
|
|
|
public function testValidationUsingClosure()
|
|
{
|
|
$validData = [
|
|
'company' => 'ACME'
|
|
];
|
|
|
|
$invalidData = [
|
|
'company' => 'Acme'
|
|
];
|
|
|
|
$rules = [
|
|
'company' => 'uppercase'
|
|
];
|
|
|
|
$validationWithValidData = Validator::make($validData, $rules);
|
|
$validationWithInvalidData = Validator::make($invalidData, $rules);
|
|
|
|
$this->assertFalse($validationWithValidData->fails());
|
|
$this->assertTrue($validationWithInvalidData->fails());
|
|
}
|
|
|
|
public function testValidationUsingRuleObject()
|
|
{
|
|
$validData = [
|
|
'name' => 'bob'
|
|
];
|
|
|
|
$invalidData = [
|
|
'name' => 'karen'
|
|
];
|
|
|
|
$rules = [
|
|
'name' => 'be_like_bob'
|
|
];
|
|
|
|
$validationWithValidData = Validator::make($validData, $rules);
|
|
$validationWithInvalidData = Validator::make($invalidData, $rules);
|
|
|
|
$this->assertFalse($validationWithValidData->fails());
|
|
$this->assertTrue($validationWithInvalidData->fails());
|
|
$this->assertEquals($validationWithInvalidData->errors()->first(), 'You must be like bob');
|
|
}
|
|
}
|