1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 03:24:20 +02:00

Preparation for merge with e107 repository

Moved all test files to e107_tests subdirectory
This commit is contained in:
Deltik
2019-11-27 11:18:53 -06:00
parent a07bc04280
commit e49ee50d31
206 changed files with 5 additions and 10 deletions

View File

@@ -0,0 +1,268 @@
<?php
/**
* e107 website system
*
* Copyright (C) 2008-2018 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*/
class e_mediaTest extends \Codeception\Test\Unit
{
/** @var e_media */
protected $md;
protected function _before()
{
try
{
$this->md = $this->make('e_media');
}
catch (Exception $e)
{
$this->fail("Couldn't load e_media object");
}
}
public function testCheckFileExtension()
{
$types = array(
array('path'=>'path-to-file/image.jpg', 'mime' => 'image/jpeg', 'expected'=>'path-to-file/image.jpg'),
array('path'=>'path-to-file/image', 'mime' => 'image/jpeg', 'expected'=>'path-to-file/image.jpg'),
array('path'=>'path-to-file/audio' , 'mime' => 'audio/mpeg', 'expected'=>'path-to-file/audio.mp3'),
array('path'=>'path-to-file/audio.mp3', 'mime' => 'audio/mpeg', 'expected'=>'path-to-file/audio.mp3'),
array('path'=>'path-to-file/image.svg', 'mime' => 'svg+xml', 'expected'=>'path-to-file/image.svg'),
);
foreach($types as $val)
{
$actual = $this->md->checkFileExtension($val['path'],$val['mime']);
$this->assertEquals($val['expected'],$actual);
//echo ($actual)."\n";
}
}
public function testProcessAjaxUpload()
{
// @todo
}
/*
public function testConvertImageToJpeg()
{
}
public function testCheckDupe()
{
}
public function testBrowserIndicators()
{
}
public function testMediaData()
{
}
public function testImport()
{
}
public function testBrowserCarouselItem()
{
}
*/
public function testImportFile()
{
$icon = codecept_data_dir()."icon_64.png";
$dest = e_IMPORT."icon_64.png";
copy($icon,$dest);
if(!file_exists($dest))
{
$this->fail("Couldn't copy icon to ".$dest);
}
$tests = array(
0 => array('file'=> 'icon_64.png', 'cat' => '_icon', 'expected'=>"{e_MEDIA_ICON}icon_64.png"),
);
foreach($tests as $var)
{
$result = $this->md->importFile($var['file'], $var['cat']);
$this->assertEquals($var['expected'],$result);
}
}
/*
public function testBrowserCarousel()
{
}
public function testCountImages()
{
}
public function testMediaSelect()
{
}
public function testCreateCategory()
{
}
public function testGetImages()
{
}
public function testRemoveCat()
{
}
public function testRemovePath()
{
}
public function testCreateUserCategory()
{
}
public function testGetFiles()
{
}
public function testListIcons()
{
}
*/
public function testGetGlyphs()
{
$result = $this->md->getGlyphs('bs3');
$this->assertEquals('adjust', $result[0]);
$this->assertEquals('zoom-out', $result[198]);
$result = $this->md->getGlyphs('fab');
$this->assertTrue(in_array('xbox', $result));
$result = $this->md->getGlyphs('fas');
$this->assertTrue(in_array('check-circle', $result));
}
/*
public function testImportIcons()
{
}
public function testCreateCategories()
{
}
public function testDeleteCategory()
{
}
public function testResizeImage()
{
}
public function testPreviewTag()
{
}
public function testDetectType()
{
}
public function testGetVideos()
{
}
public function testSaveThumb()
{
}
public function testGetAudios()
{
}
public function testDebug()
{
}
public function testGetCategories()
{
}
public function testGetThumb()
{
}
public function testDeleteAllCategories()
{
}
public function testLog()
{
}
public function testGetIcons()
{
}
*/
public function testGetPath()
{
$result = $this->md->getPath('image/jpeg');
// FIXME: This test doesn't do anything?
}
}