Implement visibility for the components groups. Closes #1892 Add functional test that asserts a guest can only see public items. * Fix tests not running due to hitting the Setup page. The missing `boostrap/cachet/testing.php` file is now generated the first time tests are ran. * Add a functional test that asserts logged in users can see all items. Add constants for possible values for the visible column/field of the ComponentGroup model. Code review changes. * Add API tests for component group visibility feature. * Implement the visibility hidden option for a component group. Fixes #1892. Add migration for the created_by column, in component_groups table. Add methods to the ComponentGroup and User models to be able to work with the created_by column. Hidden component groups are no longer displayed on the index page for loggedin users. Add functional test for the dashboard page. Save owner on create/edit component group. Update the API tests for Component group visibility feature. * Replace auth() usage with app(Guard::class). * Apply StyleCI fixes. * Drop the hidden visibility feature and fix all tests. Some code review fixes too. * Rename public to visible since it's a reserved keyword. Apply StyleCI fixes and correct typo. * Code review changes. * Tidy up component and component groups gathering. * Code review changes and StyleCI fixes. * Code review changes. * Remove extra whitespace * Remove useless method.
115 lines
3.1 KiB
PHP
115 lines
3.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
use CachetHQ\Cachet\Models\Component;
|
|
use CachetHQ\Cachet\Models\ComponentGroup;
|
|
use CachetHQ\Cachet\Models\Incident;
|
|
use CachetHQ\Cachet\Models\IncidentTemplate;
|
|
use CachetHQ\Cachet\Models\Metric;
|
|
use CachetHQ\Cachet\Models\MetricPoint;
|
|
use CachetHQ\Cachet\Models\Setting;
|
|
use CachetHQ\Cachet\Models\Subscriber;
|
|
use CachetHQ\Cachet\Models\Subscription;
|
|
use CachetHQ\Cachet\Models\User;
|
|
use Carbon\Carbon;
|
|
|
|
$factory->define(Component::class, function ($faker) {
|
|
return [
|
|
'name' => $faker->sentence(),
|
|
'description' => $faker->paragraph(),
|
|
'link' => $faker->url(),
|
|
'status' => random_int(1, 4),
|
|
'order' => 0,
|
|
];
|
|
});
|
|
|
|
$factory->define(ComponentGroup::class, function ($faker) {
|
|
return [
|
|
'name' => $faker->words(2, true),
|
|
'order' => 0,
|
|
'collapsed' => random_int(0, 3),
|
|
'visible' => $faker->boolean(),
|
|
];
|
|
});
|
|
|
|
$factory->define(Incident::class, function ($faker) {
|
|
return [
|
|
'name' => $faker->sentence(),
|
|
'message' => $faker->paragraph(),
|
|
'status' => random_int(1, 4),
|
|
'visible' => 1,
|
|
'stickied' => false,
|
|
];
|
|
});
|
|
|
|
$factory->define(IncidentTemplate::class, function ($faker) {
|
|
return [
|
|
'name' => 'Test Template',
|
|
'slug' => 'test-template',
|
|
'template' => "Name: {{ name }},\nMessage: {{ message }}",
|
|
];
|
|
});
|
|
|
|
$factory->define(Metric::class, function ($faker) {
|
|
return [
|
|
'name' => $faker->sentence(),
|
|
'suffix' => $faker->word(),
|
|
'description' => $faker->paragraph(),
|
|
'default_value' => 1,
|
|
'places' => 2,
|
|
'calc_type' => $faker->boolean(),
|
|
'display_chart' => $faker->boolean(),
|
|
'threshold' => 5,
|
|
];
|
|
});
|
|
|
|
$factory->define(MetricPoint::class, function ($faker) {
|
|
return [
|
|
'metric_id' => factory(Metric::class)->create()->id,
|
|
'value' => random_int(1, 100),
|
|
'counter' => 1,
|
|
];
|
|
});
|
|
|
|
$factory->define(Setting::class, function ($faker) {
|
|
return [
|
|
'name' => 'app_name',
|
|
'value' => 'Cachet Test Demo',
|
|
];
|
|
});
|
|
|
|
$factory->define(Subscriber::class, function ($faker) {
|
|
return [
|
|
'email' => $faker->safeEmail,
|
|
'verify_code' => 'Mqr80r2wJtxHCW5Ep4azkldFfIwHhw98M9HF04dn0z',
|
|
'verified_at' => Carbon::now(),
|
|
];
|
|
});
|
|
|
|
$factory->define(Subscription::class, function ($faker) {
|
|
return [
|
|
'subscriber_id' => factory(Subscriber::class)->create()->id,
|
|
'component_id' => factory(Component::class)->create()->id,
|
|
];
|
|
});
|
|
|
|
$factory->define(User::class, function ($faker) {
|
|
return [
|
|
'username' => $faker->userName,
|
|
'email' => $faker->safeEmail,
|
|
'password' => str_random(10),
|
|
'remember_token' => str_random(10),
|
|
'api_key' => str_random(20),
|
|
'active' => true,
|
|
'level' => 1,
|
|
];
|
|
});
|