Giter VIP home page Giter VIP logo

laravel-dummy-observer's People

Contributors

bogdanghervan avatar

Stargazers

 avatar

Watchers

 avatar  avatar

laravel-dummy-observer's Issues

Independently observe multiple models

When working with multiple models, it is not possible to assert a save against the model where the save originated.

Let's assume two models, Flight and Passenger. While we can perfectly prevent the models from being saved and assert saved attributes (provided we issue the assertions in the same order as the original saves), we cannot simply just assert that only Passenger was saved.

See full example:

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    protected $fillable = [
        'departure',
        'destination',
        'status'
    ];

    public function add(Passenger $passenger)
    {
        $this->status = 'boarding';
        $this->save();

        $passenger->boarded();
    }
}

class Passenger extends Model
{
    protected $fillable = [
        'name',
        'status'
    ];

    public function boarded()
    {
        $this->status = 'boarded';
        $this->save();
    }
}

This would be a likely test:

<?php

namespace Tests\Unit;

use Tests\TestCase;
use App\Models\Flight;
use App\Models\Passenger;
use BogdanGhervan\DummyObserver;

class FlightTest extends TestCase
{
    protected function tearDown(): void
    {
        DummyObserver::clear();
    }

    public function testAdd(): void
    {
        Flight::observe(DummyObserver::class);
        Passenger::observe(DummyObserver::class);

        $flight = new Flight([
            'departure' => 'Bucharest',
            'destination' => 'New York',
        ]);

        $passenger = new Passenger([
            'name' => 'John Smith'
        ]);

        $flight->add($passenger);

        DummyObserver::assertSavedAttributes([
            'departure' => 'Bucharest',
            'destination' => 'New York',
            'status' => 'boarding'
        ]);

        DummyObserver::assertSavedAttributes([
            'name' => 'John Smith',
            'status' => 'boarded'
        ]);
    }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.