@Test public void testUpdateExisting() throws Exception { long pk = RandomTestUtil.nextLong(); SystemEvent newSystemEvent = _persistence.create(pk); newSystemEvent.setMvccVersion(RandomTestUtil.nextLong()); newSystemEvent.setGroupId(RandomTestUtil.nextLong()); newSystemEvent.setCompanyId(RandomTestUtil.nextLong()); newSystemEvent.setUserId(RandomTestUtil.nextLong()); newSystemEvent.setUserName(RandomTestUtil.randomString()); newSystemEvent.setCreateDate(RandomTestUtil.nextDate()); newSystemEvent.setClassNameId(RandomTestUtil.nextLong()); newSystemEvent.setClassPK(RandomTestUtil.nextLong()); newSystemEvent.setClassUuid(RandomTestUtil.randomString()); newSystemEvent.setReferrerClassNameId(RandomTestUtil.nextLong()); newSystemEvent.setParentSystemEventId(RandomTestUtil.nextLong()); newSystemEvent.setSystemEventSetKey(RandomTestUtil.nextLong()); newSystemEvent.setType(RandomTestUtil.nextInt()); newSystemEvent.setExtraData(RandomTestUtil.randomString()); _systemEvents.add(_persistence.update(newSystemEvent)); SystemEvent existingSystemEvent = _persistence.findByPrimaryKey(newSystemEvent.getPrimaryKey()); Assert.assertEquals(existingSystemEvent.getMvccVersion(), newSystemEvent.getMvccVersion()); Assert.assertEquals(existingSystemEvent.getSystemEventId(), newSystemEvent.getSystemEventId()); Assert.assertEquals(existingSystemEvent.getGroupId(), newSystemEvent.getGroupId()); Assert.assertEquals(existingSystemEvent.getCompanyId(), newSystemEvent.getCompanyId()); Assert.assertEquals(existingSystemEvent.getUserId(), newSystemEvent.getUserId()); Assert.assertEquals(existingSystemEvent.getUserName(), newSystemEvent.getUserName()); Assert.assertEquals( Time.getShortTimestamp(existingSystemEvent.getCreateDate()), Time.getShortTimestamp(newSystemEvent.getCreateDate())); Assert.assertEquals(existingSystemEvent.getClassNameId(), newSystemEvent.getClassNameId()); Assert.assertEquals(existingSystemEvent.getClassPK(), newSystemEvent.getClassPK()); Assert.assertEquals(existingSystemEvent.getClassUuid(), newSystemEvent.getClassUuid()); Assert.assertEquals( existingSystemEvent.getReferrerClassNameId(), newSystemEvent.getReferrerClassNameId()); Assert.assertEquals( existingSystemEvent.getParentSystemEventId(), newSystemEvent.getParentSystemEventId()); Assert.assertEquals( existingSystemEvent.getSystemEventSetKey(), newSystemEvent.getSystemEventSetKey()); Assert.assertEquals(existingSystemEvent.getType(), newSystemEvent.getType()); Assert.assertEquals(existingSystemEvent.getExtraData(), newSystemEvent.getExtraData()); }
protected SystemEvent addSystemEvent() throws Exception { long pk = RandomTestUtil.nextLong(); SystemEvent systemEvent = _persistence.create(pk); systemEvent.setMvccVersion(RandomTestUtil.nextLong()); systemEvent.setGroupId(RandomTestUtil.nextLong()); systemEvent.setCompanyId(RandomTestUtil.nextLong()); systemEvent.setUserId(RandomTestUtil.nextLong()); systemEvent.setUserName(RandomTestUtil.randomString()); systemEvent.setCreateDate(RandomTestUtil.nextDate()); systemEvent.setClassNameId(RandomTestUtil.nextLong()); systemEvent.setClassPK(RandomTestUtil.nextLong()); systemEvent.setClassUuid(RandomTestUtil.randomString()); systemEvent.setReferrerClassNameId(RandomTestUtil.nextLong()); systemEvent.setParentSystemEventId(RandomTestUtil.nextLong()); systemEvent.setSystemEventSetKey(RandomTestUtil.nextLong()); systemEvent.setType(RandomTestUtil.nextInt()); systemEvent.setExtraData(RandomTestUtil.randomString()); _systemEvents.add(_persistence.update(systemEvent)); return systemEvent; }