[
[ ParamType::NUM, 1, ],
'1',
],
'plain' => [
[ ParamType::PLAINTEXT, 'foo & bar', ],
'foo & bar',
],
'text' => [
[ ParamType::TEXT, new MessageValue( 'key' ), ],
'',
],
'T377912' => [
[ ParamType::PLAINTEXT, T377912TestCase::class ],
'' . T377912TestCase::class . '',
]
];
}
/** @dataProvider provideConstruct */
public function testSerialize( $args, $_ ) {
[ $type, $value ] = $args;
$codec = new JsonCodec;
$obj = new ScalarParam( $type, $value );
$serialized = $codec->serialize( $obj );
$newObj = $codec->deserialize( $serialized );
// XXX: would be nice to have a proper ::equals() method.
$this->assertEquals( $obj->dump(), $newObj->dump() );
}
/** @dataProvider provideConstruct */
public function testConstruct( $args, $expected ) {
[ $type, $value ] = $args;
$mp = new ScalarParam( $type, $value );
$this->assertSame( $type, $mp->getType() );
$this->assertSame( $value, $mp->getValue() );
$this->assertSame( $expected, $mp->dump() );
}
public function testConstruct_badType() {
$this->expectException( InvalidArgumentException::class );
$this->expectExceptionMessage(
'ParamType::LIST cannot be used with ScalarParam; use ListParam instead'
);
new ScalarParam( ParamType::LIST, [] );
}
public function testConstruct_badTypeConst() {
$this->expectException( InvalidArgumentException::class );
$this->expectExceptionMessage( '$type must be one of the ParamType constants' );
new ScalarParam( 'invalid', '' );
}
public function testConstruct_badValueNULL() {
$this->expectDeprecationAndContinue(
'/Using null as message parameter was deprecated/'
);
new ScalarParam( ParamType::TEXT, null );
}
public function testConstruct_badValueClass() {
$this->expectException( InvalidArgumentException::class );
$this->expectExceptionMessage(
'Scalar parameter must be a string, number, Stringable, or MessageSpecifier; got stdClass'
);
new ScalarParam( ParamType::TEXT, new stdClass );
}
}