use of org.neo4j.ogm.domain.music.Studio in project neo4j-ogm by neo4j.
the class LoadCapabilityTest method shouldNotBeDirtyOnLoadRelationshipEntityThenSaveThenReload.
// GH-177
@Test
public void shouldNotBeDirtyOnLoadRelationshipEntityThenSaveThenReload() {
MappingContext context = ((Neo4jSession) session).context();
Artist pinkFloyd = new Artist("Pink Floyd");
Album divisionBell = new Album("The Division Bell");
divisionBell.setArtist(pinkFloyd);
Studio studio = new Studio("Britannia Row Studios");
Recording recording = new Recording(divisionBell, studio, 1994);
divisionBell.setRecording(recording);
pinkFloyd.addAlbum(divisionBell);
// new object not saved is always dirty
assertThat(context.isDirty(recording)).isTrue();
session.save(recording);
// object hash updated by save.
assertThat(context.isDirty(recording)).isFalse();
// forget everything we've done
session.clear();
recording = session.load(Recording.class, recording.getId(), 2);
// a freshly loaded object is never dirty
assertThat(context.isDirty(recording)).isFalse();
recording.setYear(1995);
// we changed the year so it is now dirty
assertThat(context.isDirty(recording)).isTrue();
session.save(recording);
// object saved, no longer dirty
assertThat(context.isDirty(recording)).isFalse();
Recording recording1995 = session.load(Recording.class, recording.getId(), // load the same identity, but to a copy ref
2);
// nothing has changed, so it should not be dirty
assertThat(context.isDirty(recording1995)).isFalse();
// two refs pointing to the same object
assertThat(recording == recording1995).isTrue();
}
use of org.neo4j.ogm.domain.music.Studio in project neo4j-ogm by neo4j.
the class LoadCapabilityTest method shouldBeAbleToLoadEntityToDifferentDepthsInDifferentSessions.
// DATAGRAPH-642, GH-174
@Test
public void shouldBeAbleToLoadEntityToDifferentDepthsInDifferentSessions() {
Artist led = new Artist("Led Zeppelin");
Album album = new Album("Led Zeppelin IV");
Studio studio = new Studio("Island Studios");
Recording recording = new Recording(album, studio, 1970);
led.addAlbum(album);
album.setArtist(led);
album.setRecording(recording);
session.save(led);
session.clear();
// In the first session, load the artist to depth 2
Artist ledZeppelin = session.load(Artist.class, led.getId(), 2);
assertThat(ledZeppelin).isNotNull();
assertThat(ledZeppelin.getName()).isEqualTo(led.getName());
assertThat(ledZeppelin.getAlbums()).hasSize(1);
Album ledZeppelinIV = ledZeppelin.getAlbums().iterator().next();
assertThat(ledZeppelinIV.getName()).isEqualTo(album.getName());
assertThat(ledZeppelinIV.getArtist()).isEqualTo(ledZeppelin);
assertThat(ledZeppelinIV.getRecording()).isNotNull();
assertThat(ledZeppelinIV.getRecording().getStudio().getName()).isEqualTo(studio.getName());
// In the second session, load the artist to depth 0
Session session2 = sessionFactory.openSession();
Artist ledZeppelin0 = session2.load(Artist.class, led.getId(), 0);
assertThat(ledZeppelin0).isNotNull();
assertThat(ledZeppelin0.getName()).isEqualTo(led.getName());
assertThat(ledZeppelin0.getAlbums()).isEmpty();
}
use of org.neo4j.ogm.domain.music.Studio in project neo4j-ogm by neo4j.
the class FilterIntegrationTest method ignoreCaseShouldBeApplicableToStartingWith.
@Test
public void ignoreCaseShouldBeApplicableToStartingWith() {
final String emi = "EMI Studios, London";
session.save(new Studio(emi));
final Filter nameFilter = new Filter("name", ComparisonOperator.STARTING_WITH, "em").ignoreCase();
assertThat(session.loadAll(Studio.class, nameFilter, 0)).hasSize(1).extracting(Studio::getName).containsExactly(emi);
}
use of org.neo4j.ogm.domain.music.Studio in project neo4j-ogm by neo4j.
the class FilterIntegrationTest method ignoreCaseShouldBeApplicableToContaining.
@Test
public void ignoreCaseShouldBeApplicableToContaining() {
final String emi = "EMI Studios, London";
session.save(new Studio(emi));
final Filter nameFilter = new Filter("name", ComparisonOperator.CONTAINING, "STUDIO").ignoreCase();
assertThat(session.loadAll(Studio.class, nameFilter, 0)).hasSize(1).extracting(Studio::getName).containsExactly(emi);
}
Aggregations