memgraph/tck_engine/tests/openCypher_M05/tck/features/LabelsAcceptance.feature
2017-03-14 12:52:32 +00:00

248 lines
5.8 KiB
Gherkin

#
# Copyright 2017 "Neo Technology",
# Network Engine for Objects in Lund AB (http://neotechnology.com)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Feature: LabelsAcceptance
Background:
Given an empty graph
Scenario: Adding a single label
And having executed:
"""
CREATE ()
"""
When executing query:
"""
MATCH (n)
SET n:Foo
RETURN labels(n)
"""
Then the result should be:
| labels(n) |
| ['Foo'] |
And the side effects should be:
| +labels | 1 |
Scenario: Ignore space before colon
And having executed:
"""
CREATE ()
"""
When executing query:
"""
MATCH (n)
SET n :Foo
RETURN labels(n)
"""
Then the result should be:
| labels(n) |
| ['Foo'] |
And the side effects should be:
| +labels | 1 |
Scenario: Adding multiple labels
And having executed:
"""
CREATE ()
"""
When executing query:
"""
MATCH (n)
SET n:Foo:Bar
RETURN labels(n)
"""
Then the result should be:
| labels(n) |
| ['Foo', 'Bar'] |
And the side effects should be:
| +labels | 2 |
Scenario: Ignoring intermediate whitespace 1
And having executed:
"""
CREATE ()
"""
When executing query:
"""
MATCH (n)
SET n :Foo :Bar
RETURN labels(n)
"""
Then the result should be:
| labels(n) |
| ['Foo', 'Bar'] |
And the side effects should be:
| +labels | 2 |
Scenario: Ignoring intermediate whitespace 2
And having executed:
"""
CREATE ()
"""
When executing query:
"""
MATCH (n)
SET n :Foo:Bar
RETURN labels(n)
"""
Then the result should be:
| labels(n) |
| ['Foo', 'Bar'] |
And the side effects should be:
| +labels | 2 |
Scenario: Creating node without label
When executing query:
"""
CREATE (node)
RETURN labels(node)
"""
Then the result should be:
| labels(node) |
| [] |
And the side effects should be:
| +nodes | 1 |
Scenario: Creating node with two labels
When executing query:
"""
CREATE (node:Foo:Bar {name: 'Mattias'})
RETURN labels(node)
"""
Then the result should be:
| labels(node) |
| ['Foo', 'Bar'] |
And the side effects should be:
| +nodes | 1 |
| +labels | 2 |
| +properties | 1 |
Scenario: Ignore space when creating node with labels
When executing query:
"""
CREATE (node :Foo:Bar)
RETURN labels(node)
"""
Then the result should be:
| labels(node) |
| ['Foo', 'Bar'] |
And the side effects should be:
| +nodes | 1 |
| +labels | 2 |
Scenario: Create node with label in pattern
When executing query:
"""
CREATE (n:Person)-[:OWNS]->(:Dog)
RETURN labels(n)
"""
Then the result should be:
| labels(n) |
| ['Person'] |
And the side effects should be:
| +nodes | 2 |
| +relationships | 1 |
| +labels | 2 |
Scenario: Fail when adding a new label predicate on a node that is already bound 1
When executing query:
"""
CREATE (n:Foo)-[:T1]->(),
(n:Bar)-[:T2]->()
"""
Then a SyntaxError should be raised at compile time: VariableAlreadyBound
Scenario: Fail when adding new label predicate on a node that is already bound 2
When executing query:
"""
CREATE ()<-[:T2]-(n:Foo),
(n:Bar)<-[:T1]-()
"""
Then a SyntaxError should be raised at compile time: VariableAlreadyBound
Scenario: Fail when adding new label predicate on a node that is already bound 3
When executing query:
"""
CREATE (n:Foo)
CREATE (n:Bar)-[:OWNS]->(:Dog)
"""
Then a SyntaxError should be raised at compile time: VariableAlreadyBound
Scenario: Fail when adding new label predicate on a node that is already bound 4
When executing query:
"""
CREATE (n {})
CREATE (n:Bar)-[:OWNS]->(:Dog)
"""
Then a SyntaxError should be raised at compile time: VariableAlreadyBound
Scenario: Fail when adding new label predicate on a node that is already bound 5
When executing query:
"""
CREATE (n:Foo)
CREATE (n {})-[:OWNS]->(:Dog)
"""
Then a SyntaxError should be raised at compile time: VariableAlreadyBound
Scenario: Using `labels()` in return clauses
And having executed:
"""
CREATE ()
"""
When executing query:
"""
MATCH (n)
RETURN labels(n)
"""
Then the result should be:
| labels(n) |
| [] |
And no side effects
Scenario: Removing a label
And having executed:
"""
CREATE (:Foo:Bar)
"""
When executing query:
"""
MATCH (n)
REMOVE n:Foo
RETURN labels(n)
"""
Then the result should be:
| labels(n) |
| ['Bar'] |
And the side effects should be:
| -labels | 1 |
Scenario: Removing a non-existent label
And having executed:
"""
CREATE (:Foo)
"""
When executing query:
"""
MATCH (n)
REMOVE n:Bar
RETURN labels(n)
"""
Then the result should be:
| labels(n) |
| ['Foo'] |
And no side effects