extractor = new NDJSON('tests/test.ndjson'); } /** * @test */ public function build() : void { $this->assertInstanceOf(NDJSON::class, $this->extractor); $this->assertInstanceOf(Extractor::class, $this->extractor); $this->assertInstanceOf(Exporter::class, $this->extractor); $this->assertInstanceOf(IteratorAggregate::class, $this->extractor); $this->assertInstanceOf(Traversable::class, $this->extractor); } /** * @test */ public function extractExport() : void { $expected = [ ['attitude' => 'nice', 'texture' => 'furry', 'sociability' => 'friendly', 'rating' => 4, 'class' => 'not monster'], ['attitude' => 'mean', 'texture' => 'furry', 'sociability' => 'loner', 'rating' => -1.5, 'class' => 'monster'], ['attitude' => 'nice', 'texture' => 'rough', 'sociability' => 'friendly', 'rating' => 2.6, 'class' => 'not monster'], ['attitude' => 'mean', 'texture' => 'rough', 'sociability' => 'friendly', 'rating' => -1, 'class' => 'monster'], ['attitude' => 'nice', 'texture' => 'rough', 'sociability' => 'friendly', 'rating' => 2.9, 'class' => 'not monster'], ['attitude' => 'nice', 'texture' => 'furry', 'sociability' => 'loner', 'rating' => -5, 'class' => 'not monster'], ]; $records = iterator_to_array($this->extractor, false); $this->assertEquals($expected, array_values($records)); $this->extractor->export($records); $this->assertFileExists('tests/test.ndjson'); } }