ecomdev/phpspec-magento-di-adapter
Composer 安装命令:
composer require ecomdev/phpspec-magento-di-adapter
包简介
An adapter for DI features of Magento\Framework to write easier your examples with PHPSpec. Does not use ObjectManager, only emulates some of its features
README 文档
README
This small PHPSpec extension allows you to test Magento 2.0 modules much more easier by utilizing generators of Magento\Framework\ObjectManager.
Why?
Reasons why not to use ObjectManager in PHPSpec examples:
- It is heavy and requires stubbing full file system in order to run a simple spec example.
- Depending on ObjectManager is a bad idea, as you don't want to test some-else DI overrides.
- Simple modules that do not require database do not need fully functional object manager
- Adapting your business logic to another framework will require from you only to materialize generated classes, instead of depending on the whole ObjectManager library.
Supported Generators
- Factory
- Repository
- Converter
- Persistor
- Mapper
- SearchResults
Installation
-
Install via composer
composer require --dev ecomdev/phpspec-magento-di-adapter
-
Add to your phpspec.yml
extensions: - EcomDev\PHPSpec\MagentoDiAdapter\Extension
Usage
Make sure that when you write examples to specify fully qualified class name for auto-generated class.
<?php namespace spec\Acme\CustomMagentoModule\Model; use Magento\Catalog\Model\Product; use PhpSpec\ObjectBehavior; use Prophecy\Argument; class ProductManagerSpec extends ObjectBehavior { private $productFactory; function let(ProductFactory $factory) { $this->productFactory = $factory; $this->beConstructedWith($factory); } function it_creates_items_via_product_factory(Product $product) { $this->productFactory->create()->willReturn($product)->shouldBeCalled(); $this->someCreationLogic(); } }
This approach will not get you a desired result, as PHP by default looks for undefined classes within the same namespace.
So instead of Magento\Catalog\Model\ProductFactory it will generate a class spec\Acme\CustomMagentoModule\Model\ProductFactory, that is definitely not a desired behavior.
In order to fix that make sure to specify fully qualified name in method signature or via use operator in the file header.
<?php namespace spec\Acme\CustomMagentoModule\Model; use Magento\Catalog\Model\Product; use Magento\Catalog\Model\ProductFactory; // This class will be automatically generated use PhpSpec\ObjectBehavior; use Prophecy\Argument; class ProductManagerSpec extends ObjectBehavior { private $productFactory; function let(ProductFactory $factory) { $this->productFactory = $factory; $this->beConstructedWith($factory); } function it_creates_items_via_product_factory(Product $product) { $this->productFactory->create()->willReturn($product)->shouldBeCalled(); $this->someCreationLogic(); } }
Contribution
Make a pull request based on develop branch
ecomdev/phpspec-magento-di-adapter 适用场景与选型建议
ecomdev/phpspec-magento-di-adapter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 20 次下载、GitHub Stars 达 6, 最近一次更新时间为 2016 年 05 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「phpspec」 「magento」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ecomdev/phpspec-magento-di-adapter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ecomdev/phpspec-magento-di-adapter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ecomdev/phpspec-magento-di-adapter 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
phpspec extension for better code generation
Magento 2 Social Login extension is designed for quick login to your Magento 2 store without procesing complex register steps
Magento - Clean up session extension
Test your Lumen applications with PhpSpec
PHPSpec extension that adds file matcher
A strictly typed PHP 7 CQRS/ES library/framework suited for PhpSpec and striving for highest IDE intellisense comfort
统计信息
- 总下载量: 20
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 8
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: OSL-3.0
- 更新时间: 2016-05-24