public function testConstructor()
 {
     $value = "_score * doc['my_numeric_field'].value";
     $script = new Script($value);
     $expected = array('script' => $value);
     $this->assertEquals($value, $script->getScript());
     $this->assertEquals($expected, $script->toArray());
     $params = array('param1' => 'one', 'param2' => 10);
     $script = new Script($value, $params);
     $expected = array('script' => $value, 'params' => $params);
     $this->assertEquals($value, $script->getScript());
     $this->assertEquals($params, $script->getParams());
     $this->assertEquals($expected, $script->toArray());
     $lang = 'mvel';
     $script = new Script($value, $params, $lang);
     $expected = array('script' => $value, 'params' => $params, 'lang' => $lang);
     $this->assertEquals($value, $script->getScript());
     $this->assertEquals($params, $script->getParams());
     $this->assertEquals($lang, $script->getLang());
     $this->assertEquals($expected, $script->toArray());
 }
Beispiel #2
0
 /**
  * @group unit
  */
 public function testSetLang()
 {
     $script = new Script('foo', array(), Script::LANG_GROOVY);
     $this->assertEquals(Script::LANG_GROOVY, $script->getLang());
     $script->setLang(Script::LANG_PYTHON);
     $this->assertEquals(Script::LANG_PYTHON, $script->getLang());
     $this->assertInstanceOf('Elastica\\Script', $script->setLang(Script::LANG_PYTHON));
 }