mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
1093256560
While this change is not 100% required now, it's good habit and we are checking for it since Moodle 4.4. All the changes in this commit have been applied automatically using the moodle.PHPUnit.TestReturnType sniff and are, exclusively adding the ": void" return types when missing.
153 lines
5.6 KiB
PHP
153 lines
5.6 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
namespace core;
|
|
|
|
use csv_export_writer;
|
|
use csv_import_reader;
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
global $CFG;
|
|
require_once($CFG->dirroot . '/lib/csvlib.class.php');
|
|
|
|
/**
|
|
* Tests csv import and export functions.
|
|
*
|
|
* @package core
|
|
* @category test
|
|
* @copyright 2012 Adrian Greeve
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class csvclass_test extends \advanced_testcase {
|
|
|
|
protected $testdata = array();
|
|
protected $teststring = '';
|
|
protected $teststring2 = '';
|
|
protected $teststring3 = '';
|
|
protected $teststring4 = '';
|
|
|
|
protected function setUp(): void {
|
|
|
|
$this->resetAfterTest();
|
|
|
|
$csvdata = array();
|
|
$csvdata[0][] = 'fullname';
|
|
$csvdata[0][] = 'description of things';
|
|
$csvdata[0][] = 'beer';
|
|
$csvdata[1][] = 'William B Stacey';
|
|
$csvdata[1][] = '<p>A field that contains "double quotes"</p>';
|
|
$csvdata[1][] = 'Asahi';
|
|
$csvdata[2][] = 'Phillip Jenkins';
|
|
$csvdata[2][] = '<p>This field has </p>
|
|
<p>Multiple lines</p>
|
|
<p>and also contains "double quotes"</p>';
|
|
$csvdata[2][] = 'Yebisu';
|
|
$this->testdata = $csvdata;
|
|
|
|
// Please note that each line needs a carriage return.
|
|
$this->teststring = 'fullname,"description of things",beer
|
|
"William B Stacey","<p>A field that contains ""double quotes""</p>",Asahi
|
|
"Phillip Jenkins","<p>This field has </p>
|
|
<p>Multiple lines</p>
|
|
<p>and also contains ""double quotes""</p>",Yebisu
|
|
';
|
|
|
|
$this->teststring2 = 'fullname,"description of things",beer
|
|
"Fred Flint","<p>Find the stone inside the box</p>",Asahi,"A fourth column"
|
|
"Sarah Smith","<p>How are the people next door?</p>,Yebisu,"Forget the next"
|
|
';
|
|
|
|
$this->teststring4 = 'fullname,"description of things",beer
|
|
"Douglas Dirk","<p>I am fine, thankyou.</p>",Becks
|
|
|
|
"Addelyn Francis","<p>Thanks for the cake</p>",Becks
|
|
"Josh Frankson","<p>Everything is fine</p>",Asahi
|
|
|
|
|
|
"Heath Forscyth","<p>We are going to make you lose your mind</p>",Fosters
|
|
';
|
|
}
|
|
|
|
public function test_csv_functions(): void {
|
|
global $CFG;
|
|
$csvexport = new csv_export_writer();
|
|
$csvexport->set_filename('unittest');
|
|
foreach ($this->testdata as $data) {
|
|
$csvexport->add_data($data);
|
|
}
|
|
$csvoutput = $csvexport->print_csv_data(true);
|
|
$this->assertSame($csvoutput, $this->teststring);
|
|
|
|
$test_data = csv_export_writer::print_array($this->testdata, 'comma', '"', true);
|
|
$this->assertSame($test_data, $this->teststring);
|
|
|
|
// Testing that the content is imported correctly.
|
|
$iid = csv_import_reader::get_new_iid('lib');
|
|
$csvimport = new csv_import_reader($iid, 'lib');
|
|
$contentcount = $csvimport->load_csv_content($this->teststring, 'utf-8', 'comma');
|
|
$csvimport->init();
|
|
$dataset = array();
|
|
$dataset[] = $csvimport->get_columns();
|
|
while ($record = $csvimport->next()) {
|
|
$dataset[] = $record;
|
|
}
|
|
$csvimport->cleanup();
|
|
$csvimport->close();
|
|
$this->assertSame($dataset, $this->testdata);
|
|
|
|
// Testing for the wrong count of columns.
|
|
$errortext = get_string('csvweirdcolumns', 'error');
|
|
$iid = csv_import_reader::get_new_iid('lib');
|
|
$csvimport = new csv_import_reader($iid, 'lib');
|
|
$contentcount = $csvimport->load_csv_content($this->teststring2, 'utf-8', 'comma');
|
|
$importerror = $csvimport->get_error();
|
|
$csvimport->cleanup();
|
|
$csvimport->close();
|
|
$this->assertSame($importerror, $errortext);
|
|
|
|
// Testing for empty content.
|
|
$errortext = get_string('csvemptyfile', 'error');
|
|
|
|
$iid = csv_import_reader::get_new_iid('lib');
|
|
$csvimport = new csv_import_reader($iid, 'lib');
|
|
$contentcount = $csvimport->load_csv_content($this->teststring3, 'utf-8', 'comma');
|
|
$importerror = $csvimport->get_error();
|
|
$csvimport->cleanup();
|
|
$csvimport->close();
|
|
$this->assertSame($importerror, $errortext);
|
|
|
|
// Testing for a tab separated file.
|
|
// The tab separated file has a trailing tab and extra blank lines at the end of the file.
|
|
$filename = $CFG->dirroot . '/lib/tests/fixtures/tabfile.csv';
|
|
$fp = fopen($filename, 'r');
|
|
$tabdata = fread($fp, filesize($filename));
|
|
fclose($fp);
|
|
$iid = csv_import_reader::get_new_iid('tab');
|
|
$csvimport = new csv_import_reader($iid, 'tab');
|
|
$contentcount = $csvimport->load_csv_content($tabdata, 'utf-8', 'tab');
|
|
// This should import four rows including the headings.
|
|
$this->assertEquals($contentcount, 4);
|
|
|
|
// Testing for empty lines.
|
|
$iid = csv_import_reader::get_new_iid('blanklines');
|
|
$csvimport = new csv_import_reader($iid, 'blanklines');
|
|
$contentcount = $csvimport->load_csv_content($this->teststring4, 'utf-8', 'comma');
|
|
// Five lines including the headings should be imported.
|
|
$this->assertEquals($contentcount, 5);
|
|
}
|
|
}
|