summaryrefslogtreecommitdiff
path: root/tests/Feature/AssetsTest.php
blob: 7850081b5e2aa84fd75d2a876a572dae35184ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php

use Lightscale\LaralightAssets\Assets;
use Lightscale\LaralightAssets\Manifest;

describe('instance', function() {
    it('instantiates', function() {
        new Assets();
    })->throwsNoExceptions();

    it('instantiates from container', function() {
        app(Assets::class);
    })->throwsNoExceptions();

    it('is singleton', function() {
        expect(app(Assets::class))->toBe(app(Assets::class));
    });
});

describe('manages manifests', function() {
    it('adds manifests', function() {
        app(Assets::class)->addManifest(
            'main',
            new Manifest(
                public_path('dist/manifest.json'),
                '/dist',
            ),
            isDefault: true,
        );
    })->throwsNoExceptions();

    it('registers manifests', function() {
        app(Assets::class)->registerManifest(
            'main', public_path('dist/manifest.json'), '/dist', isDefault: true,
        );
    })->throwsNoExceptions();

    it('gets manifests', function() {
        $assets = app(Assets::class);
        $assets->registerManifest(
            'main', public_path('dist/manifest.json'), '/dist', isDefault: true,
        );

        expect($assets->getManifests())
            ->toHaveLength(1)
            ->toContainOnlyInstancesOf(Manifest::class);
    });

    it('gets manifest', function() {
        $assets = app(Assets::class);
        $manifest = new Manifest(
            public_path('dist/manifest.json'),
            '/dist',
        );
        $name = 'main';
        $assets->addManifest($name, $manifest, true);

        expect($assets->getManifest($name))->toBe($manifest);
    });

    it('gets default manifest', function() {
        $assets = app(Assets::class);
        $manifest = new Manifest(
            public_path('dist/manifest.json'),
            '/dist',
        );
        $name = 'main';
        $assets->addManifest($name, $manifest, true);

        expect($assets->getDefaultManifest())->toBe($manifest);
    });

    it('throws exception missing manifest', function() {
        $assets = app(Assets::class);
        $assets->getManifest('main');
    })->throws(Exception::class);

    it('throws exception without default', function() {
        $assets = app(Assets::class);
        $assets->getDefaultManifest();
    })->throws(Error::class);
});