ReadOnlyTraitLaravel/spec/ReadOnlyTraitSpec.php

166 lines
4.8 KiB
PHP
Raw Permalink Normal View History

2016-03-28 11:15:08 -07:00
<?php
require_once('src/ReadOnlyTrait.php');
use MichaelAChrisco\ReadOnly\ReadOnlyException;
use MichaelAChrisco\ReadOnly\ReadOnlyTrait;
2016-03-28 11:15:08 -07:00
class User extends Illuminate\Database\Eloquent\Model {
use ReadOnlyTrait;
2016-03-28 11:15:08 -07:00
}
describe("User", function() {
describe("::create()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->create([]);
})->toThrow(new ReadOnlyException('create', 'User'));
});
});
describe("::forceCreate()", function(){
it("is expected to throw ReadOnlyException", function() {
$closure = function(){
$user = new User;
$user->forceCreate([]);
};
expect($closure)->toThrow(new ReadOnlyException('forceCreate', 'User'));
});
});
2016-03-28 11:15:08 -07:00
describe("::save()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->save([]);
})->toThrow(new ReadOnlyException('save', 'User'));
2016-03-28 11:15:08 -07:00
});
2016-12-09 06:37:13 -08:00
});
2016-03-28 11:15:08 -07:00
describe("::update()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->update([]);
})->toThrow(new ReadOnlyException('update', 'User'));
2016-03-28 11:15:08 -07:00
});
});
describe("::firstOrCreate()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->firstOrCreate([]);
})->toThrow(new ReadOnlyException('firstOrCreate', 'User'));
2016-03-28 11:15:08 -07:00
});
});
describe("::firstOrNew()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->firstOrNew([]);
})->toThrow(new ReadOnlyException('firstOrNew', 'User'));
2016-03-28 11:15:08 -07:00
});
});
describe("::delete()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->delete();
})->toThrow(new ReadOnlyException('delete', 'User'));
2016-03-28 11:15:08 -07:00
});
});
describe("::destroy()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->destroy(1);
})->toThrow(new ReadOnlyException('destroy', 'User'));
2016-03-28 11:15:08 -07:00
});
});
describe("::restore()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->restore();
})->toThrow(new ReadOnlyException('restore', 'User'));
2016-03-28 11:15:08 -07:00
});
});
describe("::forceDelete()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->forceDelete();
})->toThrow(new ReadOnlyException('forceDelete', 'User'));
});
2016-03-28 11:15:08 -07:00
});
2016-12-09 06:37:13 -08:00
describe("::performDeleteOnModel()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->performDeleteOnModel();
})->toThrow(new ReadOnlyException('performDeleteOnModel', 'User'));
});
2016-12-09 06:37:13 -08:00
});
describe("::push()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->push();
})->toThrow(new ReadOnlyException('push', 'User'));
});
2016-12-09 06:37:13 -08:00
});
describe("::finishSave()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->finishSave([]);
})->toThrow(new ReadOnlyException('finishSave', 'User'));
});
2016-12-09 06:37:13 -08:00
});
describe("::performUpdate()", function(){
it("is expected to throw ReadOnlyException", function() {
2016-12-09 06:37:13 -08:00
$user = new User;
//TODO: Mock up
// $user = new User;
// $user->performUpdate(new Builder, []);
2016-12-09 06:37:13 -08:00
unset($user);
});
});
describe("::touch()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->touch();
})->toThrow(new ReadOnlyException('touch', 'User'));
});
2016-12-09 06:37:13 -08:00
});
describe("::truncate()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->truncate();
})->toThrow(new ReadOnlyException('truncate', 'User'));
});
});
describe("::insert()", function(){
it("is expected to throw ReadOnlyException", function() {
expect(
function(){
$user = new User;
$user->insert();
})->toThrow(new ReadOnlyException('insert', 'User'));
});
});
2016-03-28 11:15:08 -07:00
});