33 $identification = $identification_generator->getUniqueResourceIdentification();
36 $path = $path_generator->getPathFor($identification);
37 $this->assertGreaterThanOrEqual(strlen($identification->serialize()), strlen($path));
38 foreach ($this->prohibited as $value) {
39 $this->assertFalse(strpos($path, $value));
42 $new_identification = $path_generator->getIdentificationFor($path);
43 $this->assertEquals($identification->serialize(), $new_identification->serialize());
49 $identification = $identification_generator->getUniqueResourceIdentification();
52 $path = $path_generator->getPathFor($identification);
54 foreach ($this->prohibited as $value) {
55 $this->assertFalse(strpos($path, $value));
58 $new_identification = $path_generator->getIdentificationFor($path);
59 $this->assertEquals($identification->serialize(), $new_identification->serialize());
Class ResourceBuilderTest.
Class UniqueIDIdentificationGenerator.
Class UUIDBasedPathGenerator.
Class MaxNestingPathGenerator.