Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: remove 'without-model' method to maintain compatibility wit… #24

Merged
merged 1 commit into from
Mar 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions tests/Feature/QueueCacheTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,39 +7,40 @@
use Mostafaznv\LaraCache\Jobs\RefreshCache;
use Mostafaznv\LaraCache\Jobs\UpdateLaraCacheModelsList;
use Mostafaznv\LaraCache\Tests\TestSupport\TestModels\QueueTestModel;
use Illuminate\Support\Str;
use Illuminate\Support\Facades\DB;

beforeEach(function() {
Bus::fake([
UpdateLaraCacheModelsList::class
]);

if (!Str::contains($this->getName(), '[without-model]')) {
createQueueModel();
}
});

it('will initiate cache object with CREATING status', function() {
createQueueModel();

$cache = QueueTestModel::cache()->get('latest', true);
$isCreating = $cache->status->equals(CacheStatus::CREATING());

expect($isCreating)->toBeTrue();
});

it('will initiate cache object with entity default value', function() {
createQueueModel();

$cache = QueueTestModel::cache()->get('latest', true);

expect($cache->value)->toBe(-1);
});

it('will initiate cache object with properly expiration ttl', function() {
createQueueModel();

$cache = QueueTestModel::cache()->get('latest', true);

expect(is_null($cache->expiration))->toBeFalse();
});

it('will dispatch refresh-cache [without-model]', function() {
it('will dispatch refresh-cache', function() {
Queue::fake();
createQueueModel();

Expand All @@ -49,6 +50,7 @@
});

it('will create cache after processing queue', function() {
createQueueModel();
$before = now();

$model = createQueueModel();
Expand All @@ -64,7 +66,7 @@
->and($isCreated)->toBeTrue();
});

it('will return default value and dispatch cache creation job on retrieving entity [without-model]', function() {
it('will return default value and dispatch cache creation job on retrieving entity', function() {
Queue::fake();
DB::table('test_models')
->insert([
Expand All @@ -84,7 +86,7 @@
Queue::assertPushedOn($onQueue, RefreshCache::class);
});

it('will create cache in background on retrieving entity [without-model]', function() {
it('will create cache in background on retrieving entity', function() {
$name = 'queue-test-name';
$before = now();

Expand Down Expand Up @@ -113,7 +115,7 @@
->and($isCreated)->toBeTrue();
});

it('will change cache status to creating on model update [without-model]', function() {
it('will change cache status to creating on model update', function() {
$model = createQueueModel();

$cache = QueueTestModel::cache()->get('latest', true);
Expand Down Expand Up @@ -145,7 +147,7 @@
->and($cache->value->name)->toBe('new name');
});

it('will return old cache until queue process of updating model is done [without-model]', function() {
it('will return old cache until queue process of updating model is done', function() {
$model = createQueueModel('old-name');

$cache = QueueTestModel::cache()->get('latest');
Expand Down
Loading