feat: VivesPOS landing on Winter CMS 1.2 — theme + plugin + Dockerfile
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
This commit is contained in:
2026-08-21 19:29:00 -06:00
commit 1f72193a64
3266 changed files with 531480 additions and 0 deletions

View File

@@ -0,0 +1,100 @@
<?php
namespace System\Tests\Console\Asset\Mix;
use System\Tests\Bootstrap\TestCase;
use Winter\Storm\Support\Facades\File;
class MixCompileTest extends TestCase
{
protected string $command = 'mix:compile';
public function setUp(): void
{
parent::setUp();
if (!File::exists(base_path('node_modules'))) {
$this->markTestSkipped('This test requires node_modules to be installed');
}
if (!File::exists(base_path('node_modules/.bin/mix'))) {
$this->markTestSkipped('This test requires the mix package to be installed');
}
}
public function testCompileMultiple()
{
$this->artisan($this->command, [
'--manifest' => 'modules/system/tests/fixtures/npm/package-ac.json',
'--silent' => true
])->assertExitCode(0);
$this->assertFileExists(base_path('modules/system/tests/fixtures/plugins/mix/testa/assets/dist/app.js'));
$this->assertFileExists(base_path('modules/system/tests/fixtures/plugins/mix/testc/assets/dist/app.js'));
}
public function testCompileMultipleWithErrors()
{
$this->artisan($this->command, [
'--manifest' => 'modules/system/tests/fixtures/npm/package-abc.json',
'--disable-tty' => true
])
->expectsOutputToContain('Error: Can\'t resolve \'some-missing-package\'')
->assertExitCode(1);
$this->assertFileExists(base_path('modules/system/tests/fixtures/plugins/mix/testa/assets/dist/app.js'));
$this->assertFileExists(base_path('modules/system/tests/fixtures/plugins/mix/testb/assets/dist/app.js'));
$this->assertFileExists(base_path('modules/system/tests/fixtures/plugins/mix/testc/assets/dist/app.js'));
}
public function testCompileTarget()
{
$this->artisan($this->command, [
'--manifest' => 'modules/system/tests/fixtures/npm/package-abc.json',
'--package' => 'mix.testa',
'--silent' => true
])->assertExitCode(0);
$this->assertFileExists(base_path('modules/system/tests/fixtures/plugins/mix/testa/assets/dist/app.js'));
$this->assertFileNotExists(base_path('modules/system/tests/fixtures/plugins/mix/testb/assets/dist/app.js'));
$this->assertFileNotExists(base_path('modules/system/tests/fixtures/plugins/mix/testc/assets/dist/app.js'));
}
public function testCompileTargetWithError()
{
$this->artisan($this->command, [
'--manifest' => 'modules/system/tests/fixtures/npm/package-abc.json',
'--package' => 'mix.testb',
'--disable-tty' => true
])
->expectsOutputToContain('Error: Can\'t resolve \'some-missing-package\'')
->assertExitCode(1);
$this->assertFileNotExists(base_path('modules/system/tests/fixtures/plugins/mix/testa/assets/dist/app.js'));
$this->assertFileNotExists(base_path('modules/system/tests/fixtures/plugins/mix/testc/assets/dist/app.js'));
$this->assertFileExists(base_path('modules/system/tests/fixtures/plugins/mix/testb/assets/dist/app.js'));
}
public function testCompileTargetStopOnError()
{
$this->artisan($this->command, [
'--manifest' => 'modules/system/tests/fixtures/npm/package-abc.json',
'--stop-on-error' => true,
'--disable-tty' => true
])
->expectsOutputToContain('Error: Can\'t resolve \'some-missing-package\'')
->assertExitCode(1);
$this->assertFileExists(base_path('modules/system/tests/fixtures/plugins/mix/testa/assets/dist/app.js'));
$this->assertFileExists(base_path('modules/system/tests/fixtures/plugins/mix/testb/assets/dist/app.js'));
$this->assertFileNotExists(base_path('modules/system/tests/fixtures/plugins/mix/testc/assets/dist/app.js'));
}
public function tearDown(): void
{
File::deleteDirectory('modules/system/tests/fixtures/plugins/mix/testa/assets/dist');
File::deleteDirectory('modules/system/tests/fixtures/plugins/mix/testb/assets/dist');
File::deleteDirectory('modules/system/tests/fixtures/plugins/mix/testc/assets/dist');
parent::tearDown();
}
}

View File

@@ -0,0 +1,234 @@
<?php
namespace System\Tests\Console\Asset\Mix;
use System\Classes\PluginManager;
use System\Tests\Bootstrap\TestCase;
use Winter\Storm\Support\Facades\File;
class MixCreateTest extends TestCase
{
protected string $testPlugin = 'Winter.Sample';
public function testConfigWritten(): void
{
$path = PluginManager::instance()->findByIdentifier($this->testPlugin)->getPluginPath();
$configPath = $path . '/winter.mix.js';
// Check file does not exist
$this->assertFileNotExists($configPath);
// Run the config command to generate the vite config
$this->artisan('mix:create', [
'packageName' => $this->testPlugin,
'--no-stubs' => true,
])
->doesntExpectOutput('winter.mix.js already exists, overwrite?')
->assertExitCode(0);
// Validate the manifest was written
$this->assertFileExists($configPath);
// Get the predicted contents
$fixture = str_replace(
'{{packageName}}',
'winter-sample',
File::get(base_path('modules/system/console/asset/fixtures/config/mix/winter.mix.js.fixture')),
);
// Check the file written is what was expected
$this->assertEquals($fixture, File::get($configPath));
// Overwrite the file content
File::put($configPath, 'testing');
// Check that refusing to overwrite does not replace file contents
$this->artisan('mix:create', [
'packageName' => $this->testPlugin,
'--no-stubs' => true,
])
->expectsQuestion('winter.mix.js already exists, overwrite?', false)
->assertExitCode(0);
// Check file contents was not overwritten
$this->assertNotEquals($fixture, File::get($configPath));
// Run command confirming to overwrite file contents works
$this->artisan('mix:create', [
'packageName' => $this->testPlugin,
'--no-stubs' => true,
])
->expectsQuestion('winter.mix.js already exists, overwrite?', true)
->assertExitCode(0);
// Check file contents was overwritten
$this->assertEquals($fixture, File::get($configPath));
}
public function testConfigTailwind(): void
{
$path = PluginManager::instance()->findByIdentifier($this->testPlugin)->getPluginPath();
$configPath = $path . '/winter.mix.js';
$packageJson = $path . '/package.json';
// Check file does not exist
$this->assertFileNotExists($configPath);
// Run the config command to generate the vite config
$this->artisan('mix:create', [
'packageName' => $this->testPlugin,
'--tailwind' => true,
'--no-stubs' => true,
])
->assertExitCode(0);
// Check files are created correctly
$this->assertFileExists($configPath);
$this->assertFileExists($path . '/tailwind.config.js');
$this->assertFileExists($path . '/postcss.config.mjs');
// Get the contents of the package.json
$json = json_decode(File::get($packageJson));
// Check tailwindcss is required
$this->assertTrue(isset($json->devDependencies->tailwindcss));
}
public function testConfigReact(): void
{
$path = PluginManager::instance()->findByIdentifier($this->testPlugin)->getPluginPath();
$configPath = $path . '/winter.mix.js';
$packageJson = $path . '/package.json';
// Check file does not exist
$this->assertFileNotExists($configPath);
// Run the config command to generate the vite config with react
$this->artisan('mix:create', [
'packageName' => $this->testPlugin,
'--react' => true,
'--no-stubs' => true,
])
->assertExitCode(0);
// Check files are created correctly
$this->assertFileExists($configPath);
$this->assertFileExists($packageJson);
// Get the contents of the package.json
$json = json_decode(File::get($packageJson));
// Check react is required
$this->assertTrue(isset($json->devDependencies->react));
}
public function testConfigTailwindReact(): void
{
$path = PluginManager::instance()->findByIdentifier($this->testPlugin)->getPluginPath();
$configPath = $path . '/winter.mix.js';
$packageJson = $path . '/package.json';
// Check file does not exist
$this->assertFileNotExists($configPath);
// Run the config command to generate the vite config with react
$this->artisan('mix:create', [
'packageName' => $this->testPlugin,
'--tailwind' => true,
'--react' => true,
'--no-stubs' => true,
])
->assertExitCode(0);
// Check files are created correctly
$this->assertFileExists($configPath);
$this->assertFileExists($packageJson);
$this->assertFileExists($path . '/tailwind.config.js');
$this->assertFileExists($path . '/postcss.config.mjs');
// Get the contents of the package.json
$json = json_decode(File::get($packageJson));
// Check tailwind & react are required
$this->assertTrue(isset($json->devDependencies->tailwindcss));
$this->assertTrue(isset($json->devDependencies->react));
}
public function testConfigVue(): void
{
$path = PluginManager::instance()->findByIdentifier($this->testPlugin)->getPluginPath();
$configPath = $path . '/winter.mix.js';
$packageJson = $path . '/package.json';
// Check file does not exist
$this->assertFileNotExists($configPath);
// Run the config command to generate the vite config with vue
$this->artisan('mix:create', [
'packageName' => $this->testPlugin,
'--vue' => true,
'--no-stubs' => true,
])
->assertExitCode(0);
// Check files are created correctly
$this->assertFileExists($configPath);
$this->assertFileExists($packageJson);
// Get the contents of the package.json
$json = json_decode(File::get($packageJson));
// Check vue is required
$this->assertTrue(isset($json->devDependencies->vue));
}
public function testConfigTailwindVue(): void
{
$path = PluginManager::instance()->findByIdentifier($this->testPlugin)->getPluginPath();
$configPath = $path . '/winter.mix.js';
$packageJson = $path . '/package.json';
// Check file does not exist
$this->assertFileNotExists($configPath);
// Run the config command to generate the vite config with vue
$this->artisan('mix:create', [
'packageName' => $this->testPlugin,
'--tailwind' => true,
'--vue' => true,
'--no-stubs' => true,
])
->assertExitCode(0);
// Check files are created correctly
$this->assertFileExists($configPath);
$this->assertFileExists($packageJson);
$this->assertFileExists($path . '/tailwind.config.js');
$this->assertFileExists($path . '/postcss.config.mjs');
// Get the contents of the package.json
$json = json_decode(File::get($packageJson));
// Check tailwind & vue are required
$this->assertTrue(isset($json->devDependencies->tailwindcss));
$this->assertTrue(isset($json->devDependencies->vue));
}
public function tearDown(): void
{
$path = PluginManager::instance()->findByIdentifier($this->testPlugin)->getPluginPath();
$files = [
$path . '/winter.mix.js',
$path . '/package.json',
$path . '/tailwind.config.js',
$path . '/postcss.config.mjs',
];
foreach ($files as $file) {
if (File::exists($file)) {
File::delete($file);
}
}
}
}

View File

@@ -0,0 +1,213 @@
<?php
namespace System\Tests\Console\Asset\Mix;
use System\Classes\Asset\PackageManager;
use System\Tests\Bootstrap\TestCase;
use Winter\Storm\Exception\SystemException;
use Winter\Storm\Support\Facades\File;
class MixInstallTest extends TestCase
{
protected string $fixturePath;
protected string $jsonPath;
protected string $lockPath;
protected string $backupPath;
public function setUp(): void
{
parent::setUp();
if (!File::exists(base_path('node_modules'))) {
$this->markTestSkipped('This test requires node_modules to be installed');
}
// Define some helpful paths
$this->fixturePath = base_path('modules/system/tests');
$this->jsonPath = $this->fixturePath . '/package.json';
$this->lockPath = $this->fixturePath . '/package-lock.json';
$this->backupPath = $this->fixturePath . '/package-testing.json';
// Add our testing theme because it won't be auto discovered
PackageManager::instance()->registerPackage(
'theme-assettest',
base_path('modules/system/tests/fixtures/themes/assettest/winter.mix.js'),
'mix'
);
PackageManager::instance()->registerPackage(
'theme-npmtest',
base_path('modules/system/tests/fixtures/themes/npmtest/winter.mix.js'),
'mix'
);
}
public function testMixInstallMissingPackageJson(): void
{
$this->artisan('mix:install', [
'assetPackage' => ['theme-assettest'],
'--package-json' => '/some/file',
'--no-install' => true
])
->expectsOutputToContain('The supplied --package-json path does not exist.')
->assertExitCode(1);
}
public function testMixInstallSinglePackage(): void
{
$this->withPackageJsonRestore(function () {
$this->artisan('mix:install', [
'assetPackage' => ['theme-assettest'],
'--package-json' => $this->jsonPath,
'--no-install' => true
])
->expectsQuestion('laravel-mix was not found as a dependency in package.json, would you like to add it?', true)
->expectsOutput('Adding theme-assettest (modules/system/tests/fixtures/themes/assettest) to the workspaces.packages property in package.json')
->assertExitCode(0);
$this->assertFileExists($this->jsonPath);
$packageJson = json_decode(File::get($this->jsonPath), JSON_OBJECT_AS_ARRAY);
$this->assertArrayHasKey('devDependencies', $packageJson);
$this->assertArrayHasKey('laravel-mix', $packageJson['devDependencies']);
$this->assertArrayHasKey('workspaces', $packageJson);
$this->assertArrayHasKey('packages', $packageJson['workspaces']);
$this->assertContains('modules/system/tests/fixtures/themes/assettest', $packageJson['workspaces']['packages']);
});
}
public function testMixInstallMultiplePackages(): void
{
$this->withPackageJsonRestore(function () {
$this->artisan('mix:install', [
'assetPackage' => ['theme-assettest', 'theme-npmtest'],
'--package-json' => $this->jsonPath,
'--no-install' => true
])
->expectsQuestion('laravel-mix was not found as a dependency in package.json, would you like to add it?', true)
->expectsOutput('Adding theme-assettest (modules/system/tests/fixtures/themes/assettest) to the workspaces.packages property in package.json')
->expectsOutput('Adding theme-npmtest (modules/system/tests/fixtures/themes/npmtest) to the workspaces.packages property in package.json')
->assertExitCode(0);
$this->assertFileExists($this->jsonPath);
$packageJson = json_decode(File::get($this->jsonPath), JSON_OBJECT_AS_ARRAY);
$this->assertArrayHasKey('devDependencies', $packageJson);
$this->assertArrayHasKey('laravel-mix', $packageJson['devDependencies']);
$this->assertArrayHasKey('workspaces', $packageJson);
$this->assertArrayHasKey('packages', $packageJson['workspaces']);
$this->assertContains('modules/system/tests/fixtures/themes/assettest', $packageJson['workspaces']['packages']);
$this->assertContains('modules/system/tests/fixtures/themes/npmtest', $packageJson['workspaces']['packages']);
});
}
public function testMixInstallMissingPackage(): void
{
// We should receive an exception for a missing package
$this->withPackageJsonRestore(function () {
$this->expectException(SystemException::class);
$this->artisan('mix:install', [
'assetPackage' => ['theme-assettest2'],
'--package-json' => $this->jsonPath,
'--no-install' => true
])
->assertExitCode(1);
});
}
public function testMixInstallRelativePath(): void
{
$this->withPackageJsonRestore(function () {
$this->artisan('mix:install', [
'assetPackage' => ['theme-assettest'],
'--package-json' => 'modules/system/tests/package.json',
'--no-install' => true
])
->expectsQuestion('laravel-mix was not found as a dependency in package.json, would you like to add it?', true)
->expectsOutput('Adding theme-assettest (modules/system/tests/fixtures/themes/assettest) to the workspaces.packages property in package.json')
->assertExitCode(0);
});
}
public function testMixInstallIgnoredPackage(): void
{
$this->withPackageJsonRestore(function () {
$packageJson = json_decode(File::get($this->jsonPath), JSON_OBJECT_AS_ARRAY);
$packageJson['workspaces'] = [
'ignoredPackages' => [
'modules/system/tests/fixtures/themes/assettest'
]
];
File::put($this->jsonPath, json_encode($packageJson, JSON_PRETTY_PRINT));
$this->artisan('mix:install', [
'assetPackage' => ['theme-assettest'],
'--package-json' => $this->jsonPath,
'--no-install' => true
])
->expectsQuestion('laravel-mix was not found as a dependency in package.json, would you like to add it?', false)
->expectsOutput('The requested package theme-assettest (modules/system/tests/fixtures/themes/assettest) is ignored, remove it from package.json to continue.')
->assertExitCode(0);
$packageJson = json_decode(File::get($this->jsonPath), JSON_OBJECT_AS_ARRAY);
$this->assertArrayHasKey('workspaces', $packageJson);
$this->assertArrayNotHasKey('packages', $packageJson['workspaces']);
$this->assertArrayNotHasKey('dependencies', $packageJson);
$this->assertArrayNotHasKey('devDependencies', $packageJson);
});
}
public function testMixInstallWithNpmInstall(): void
{
$this->withPackageJsonRestore(function () {
$this->assertDirectoryDoesNotExist($this->fixturePath . '/node_modules');
$this->artisan('mix:install', [
'assetPackage' => ['theme-assettest'],
'--package-json' => $this->jsonPath,
'--disable-tty' => true
])
->expectsQuestion('laravel-mix was not found as a dependency in package.json, would you like to add it?', true)
->expectsOutput('Adding theme-assettest (modules/system/tests/fixtures/themes/assettest) to the workspaces.packages property in package.json')
->expectsOutputToContain('packages, and audited') // output from npm i
->assertExitCode(0);
$this->assertFileExists($this->jsonPath);
$packageJson = json_decode(File::get($this->jsonPath), JSON_OBJECT_AS_ARRAY);
$this->assertArrayHasKey('devDependencies', $packageJson);
$this->assertArrayHasKey('laravel-mix', $packageJson['devDependencies']);
$this->assertArrayHasKey('workspaces', $packageJson);
$this->assertArrayHasKey('packages', $packageJson['workspaces']);
$this->assertContains('modules/system/tests/fixtures/themes/assettest', $packageJson['workspaces']['packages']);
$this->assertFileExists($this->lockPath);
$this->assertDirectoryExists($this->fixturePath . '/node_modules');
$this->assertDirectoryExists($this->fixturePath . '/node_modules/laravel-mix');
});
}
/**
* Helper to run test logic and handle restoring package.json file after
*/
protected function withPackageJsonRestore(callable $callback): void
{
File::copy($this->backupPath, $this->jsonPath);
$callback();
File::delete($this->jsonPath);
}
public function tearDown(): void
{
if (File::isDirectory($this->fixturePath . '/node_modules')) {
File::deleteDirectory($this->fixturePath . '/node_modules');
}
if (File::exists($this->lockPath)) {
File::delete($this->lockPath);
}
parent::tearDown();
}
}