Exemple #1
0
 public function testUpdateUser()
 {
     $password = '******';
     $encodedPassword = '******';
     $email = '*****@*****.**';
     $user = new User();
     $user->setUsername($email)->setEmail($email)->setPlainPassword($password);
     $encoder = $this->getMock('Symfony\\Component\\Security\\Core\\Encoder\\PasswordEncoderInterface');
     $encoder->expects($this->once())->method('encodePassword')->with($user->getPlainPassword(), $user->getSalt())->will($this->returnValue($encodedPassword));
     $this->ef->expects($this->once())->method('getEncoder')->with($user)->will($this->returnValue($encoder));
     $this->om->expects($this->once())->method('persist')->with($this->equalTo($user));
     $this->om->expects($this->once())->method('flush');
     $this->metadata->expects($this->once())->method('getAssociationTargetClass')->willReturn('Symfony\\Component\\Security\\Core\\Role\\RoleInterface');
     $repository = $this->getMockBuilder('Oro\\Bundle\\UserBundle\\Entity\\Repository\\UserApiRepository')->disableOriginalConstructor()->getMock();
     $this->om->expects($this->any())->method('getRepository')->will($this->returnValue($repository));
     $repository->expects($this->once())->method('findOneBy')->with($this->equalTo(['role' => User::ROLE_DEFAULT]))->will($this->returnValue(new Role(User::ROLE_DEFAULT)));
     $this->userManager->updateUser($user);
     $this->assertEquals($email, $user->getEmail());
     $this->assertEquals($encodedPassword, $user->getPassword());
 }
 public function testUnserialize()
 {
     $user = new User();
     $serialized = array('password', 'salt', 'username', true, 'confirmation_token', 10);
     $user->unserialize(serialize($serialized));
     $this->assertEquals($serialized[0], $user->getPassword());
     $this->assertEquals($serialized[1], $user->getSalt());
     $this->assertEquals($serialized[2], $user->getUsername());
     $this->assertEquals($serialized[3], $user->isEnabled());
     $this->assertEquals($serialized[4], $user->getConfirmationToken());
     $this->assertEquals($serialized[5], $user->getId());
 }
 /**
  * @dataProvider normalizeScalarFieldsDataProvider
  */
 public function testDenormalizeScalarFields(User $expectedObject, array $data, array $context)
 {
     $actualUser = $this->normalizer->denormalize($data, self::USER_TYPE, null, $context);
     $actualUser->setSalt($expectedObject->getSalt());
     $this->assertEquals($expectedObject, $actualUser);
 }