Ejemplo n.º 1
0
 /**
  * Create request object
  * @return \jones\novaposhta\request\RequestInterface
  * @throws InvalidConfigException
  */
 public function create()
 {
     $name = 'novaposhta';
     $components = Yii::$app->getComponents();
     if (empty($components[$name]) || empty($components[$name]['api_key'])) {
         throw new InvalidConfigException('The "api_key" of component should be specified');
     }
     if (empty($components[$name]['format'])) {
         throw new InvalidConfigException('The "format" should be specified');
     }
     $converterFactory = new ConverterFactory();
     $converter = $converterFactory->create($components[$name]['format']);
     $clientFactory = new ClientFactory();
     $request = Yii::createObject(Request::class, [$converter, $clientFactory, $components['novaposhta']['api_key']]);
     return $request;
 }
 /**
  * @covers \jones\novaposhta\converters\ConverterFactory::create
  */
 public function testCreateXmlConverter()
 {
     $converter = $this->converterFactory->create(ConverterInterface::FORMAT_XML);
     static::assertInstanceOf(XmlConverter::class, $converter);
 }