Skip to content

Commit c91a479

Browse files
exaby73transistive
andauthored
fix: Crash when data contains a single backslash (#233)
* fix: Crash when data contains a single backslash * refactor: Add remove orphans flag * don't stress out our poor http endpoint :'( --------- Co-authored-by: Ghlen Nagels <[email protected]>
1 parent 772ee90 commit c91a479

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/integration-test-cluster-neo4j-4.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: hoverkraft-tech/[email protected]
2424
with:
2525
compose-file: './docker-compose-neo4j-4.yml'
26-
up-flags: '--build'
26+
up-flags: '--build --remove-orphans'
2727
- name: Test
2828
run: |
2929
docker compose run client composer install

.github/workflows/integration-test-cluster-neo4j-5.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: hoverkraft-tech/[email protected]
2424
with:
2525
compose-file: './docker-compose.yml'
26-
up-flags: '--build'
26+
up-flags: '--build --remove-orphans'
2727
- name: Test
2828
run: |
2929
docker compose run client composer install

.github/workflows/integration-test-single-server.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: hoverkraft-tech/[email protected]
2222
with:
2323
compose-file: './docker-compose-neo4j-4.yml'
24-
up-flags: '--build'
24+
up-flags: '--build --remove-orphans'
2525
- name: Composer install
2626
run: |
2727
docker compose run client composer install

src/Formatter/Specialised/BoltOGMTranslator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ public function mapValueToType(mixed $value)
300300
$type = get_debug_type($value);
301301
foreach ($this->rawToTypes as $class => $formatter) {
302302
/** @psalm-suppress ArgumentTypeCoercion */
303-
if ($type === $class || is_a($value, $class, true)) {
303+
if ($type === $class || is_a($value, $class)) {
304304
return $formatter($value);
305305
}
306306
}

tests/Integration/EdgeCasesTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ public function testComplex(): void
7777

7878
public function testRunALotOfStatements(): void
7979
{
80+
if (str_starts_with($_ENV['CONNECTION'] ?? '', 'http')) {
81+
$this->markTestSkipped('HTTP mass queries overload tiny neo4j instances');
82+
}
83+
8084
$persons = $this->getSession()->run('MATCH (p:Person) RETURN p');
8185
$movies = $this->getSession()->run('MATCH (m:Movie) RETURN m');
8286

0 commit comments

Comments
 (0)