* @copyright 2007-2022 Kjell-Inge Gustafsson, kigkonsult, All rights reserved * @link https://kigkonsult.se * @license Subject matter of licence is the software iCalcreator. * The above copyright, link, package and version notices, * this licence notice and the invariant [rfc5545] PRODID result use * as implemented and invoked in iCalcreator shall be included in * all copies or substantial portions of the iCalcreator. * * iCalcreator is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * iCalcreator 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with iCalcreator. If not, see . */ namespace Kigkonsult\Icalcreator; use Exception; use Kigkonsult\Icalcreator\Util\CalAddressFactory; use PHPUnit\Framework\TestCase; use Kigkonsult\Icalcreator\Util\IcalvCardFactory; include_once 'SelectComponentsTest.php'; /** * class IcalvCardFactoryTest * * Testing IcalvCardFactory * * @since 2.27.14 - 2019-03-16 */ class IcalvCardFactoryTest extends TestCase { /** * IcalvCardFactoryTest provider * /** * SelectComponentsTest provider * * @return mixed[] * @throws Exception */ public function IcalvCardTestProvider() : array { $dataArr = []; $dataArr[] = [ 11, SelectComponentsTest::veventCalendarSubProvider(), null ]; $dataArr[] = [ 12, SelectComponentsTest::veventCalendarSubProvider(), '3.0' ]; $dataArr[] = [ 12, SelectComponentsTest::veventCalendarSubProvider(), '4.0' ]; $dataArr[] = [ 21, SelectComponentsTest::vtodoCalendarSubProvider(), null, false ]; $dataArr[] = [ 22, SelectComponentsTest::vtodoCalendarSubProvider(), '3.0' ]; $dataArr[] = [ 23, SelectComponentsTest::vtodoCalendarSubProvider(), '4.0' ]; return $dataArr; } // return SelectComponentsTest::SelectComponentsTestProvider(); /** * Testing IcalvCardFactory::iCal2vCards (+iCal2vCard+...) * * @test * @dataProvider IcalvCardTestProvider' * @param int $case * @param Vcalendar $vcalendar * @param null|string $version */ public function IcalvCardTest( int $case, Vcalendar $vcalendar, ? string $version = null ) : void { static $ERRFMT1 = 'Error in #%d-1, version not found'; static $ERRFMT2 = 'Error in #%d-2, count BEGIN not match, exp %d got %d'; static $ERRFMT3 = 'Error in #%d-3, email not found : %s'; $vCards = IcalvCardFactory::iCal2vCards( $vcalendar, $version, true, $count ); if( ! empty( $version )) { $this->assertNotFalse( strpos( $vCards, $version ), sprintf( $ERRFMT1, $case ) ); } $currentCnt = substr_count( $vCards, 'BEGIN:VCARD' ); $this->assertEquals( $count, $currentCnt, sprintf( $ERRFMT2, $case, $count, $currentCnt ) ); foreach( CalAddressFactory::getCalAddresses( $vcalendar ) as $eMail ) { $this->assertNotFalse ( strpos( $vCards, $eMail ), sprintf( $ERRFMT3, $case, $eMail ) ); } // end foreach } }