_createIndex(); $type = $index->getType('test'); $type->setMapping(new Mapping(null, array( 'start' => array('type' => 'long'), 'end' => array('type' => 'long'), ))); $type->addDocuments(array( new Document(1, array('start' => 100, 'end' => 200)), new Document(2, array('start' => 200, 'end' => 250)), new Document(3, array('start' => 300, 'end' => 450)), )); $index->refresh(); return $index; } /** * @group functional */ public function testScriptedMetricAggregation() { $agg = new ScriptedMetric( 'scripted', "_agg['durations'] = [:]", "key = doc['start'].value+ \":\"+ doc['end'].value; _agg.durations[key] = doc['end'].value - doc['start'].value;", 'values = []; for (item in _agg.durations) { values.add(item.value) }; return values' ); $query = new Query(); $query->addAggregation($agg); $results = $this->_getIndexForTest()->search($query)->getAggregation('scripted'); $this->assertEquals(array(100, 50, 150), $results['value'][0]); } }