承接 ohseesoftware/laravel-assert-encrypted 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ohseesoftware/laravel-assert-encrypted

最新稳定版本:v1.2.1

Composer 安装命令:

composer require ohseesoftware/laravel-assert-encrypted

包简介

Add an assertion to test for encrypted values in your database.

README 文档

README

Current Release Build Status Badge Coverage Status Maintainability Score Downloads MIT License

Add an assertion to test for encrypted values in your database.

Install

composer require ohseesoftware/laravel-assert-encrypted

Usage

Say you have an encrypted value in your database:

User::create([
    'name' => 'John Doe',
    'secret' => encrypt('api-key')
]);

It's a bit hard to test the value of secret in the database because there's randomness in encrypt(). This means encrypt('value') !== encrypt('value').

To get around this, you can use the trait exposed in this package in your tests:

<?php

namespace Tests;

use OhSeeSoftware\LaravelAssertEncrypted\Traits\AssertEncrypted;

class SomeTest extends TestCase
{
    use AssertEncrypted;

    /** @test */
    public function it_stores_users_secrets()
    {
        // Given
        $user = factory(User::class)->create([
            'secret' => encrypt('api-key')
        ]);

        // Then
        $this->assertEncrypted('users', ['id' => $user->id], [
            'secret' => 'api-key'
        ]);

        // assertEncrypted is an alias for assertEncryptedSerialized
        // since encrypt by default serializes the passed value
    }
}

If your values are not serialized before encryption, you can use the assertEncryptedUnserialized assertion.

<?php

 /** @test */
public function it_stores_users_secrets()
{
    // Given
    $user = factory(User::class)->create([
        'secret' => encrypt('api-key', false)
    ]);

    // Then
    $this->assertEncryptedUnserialized('users', ['id' => $user->id], [
        'secret' => 'api-key'
    ]);
}

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email security@ohseesoftware.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.

统计信息

  • 总下载量: 41.31k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 3
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-05-03