Skip to content

Commit

Permalink
fix after review
Browse files Browse the repository at this point in the history
  • Loading branch information
ScharfViktor committed Sep 8, 2023
1 parent 11a32df commit 35f2a48
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 50 deletions.
2 changes: 1 addition & 1 deletion services/idp/package.json
Expand Up @@ -5,7 +5,7 @@
"homepage": ".",
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"build": "node scripts/build.js && rm -f build/service-worker.js",
"build": "node --openssl-legacy-provider scripts/build.js && rm -f build/service-worker.js",
"licenses": "NODE_PATH=./node_modules node ../scripts/js-license-ranger.js",
"licenses:check": "license-checker-rseidelsohn --summary --relativeLicensePath --onlyAllow 'Python-2.0;Apache*;Apache License, Version 2.0;Apache-2.0;Apache 2.0;Artistic-2.0;BSD;BSD-3-Clause;CC-BY-3.0;CC-BY-4.0;CC0-1.0;ISC;MIT;MPL-2.0;Public Domain;Unicode-TOU;Unlicense;WTFPL;ODC-By-1.0' --excludePackages 'identifier;kpop;po2json;unicoderegexp'",
"licenses:csv": "license-checker-rseidelsohn --relativeLicensePath --csv --out ../../third-party-licenses/node/idp/third-party-licenses.csv",
Expand Down
36 changes: 3 additions & 33 deletions tests/acceptance/features/apiSearch/apiSpaceSearch.feature
Expand Up @@ -32,9 +32,6 @@ Feature: Search
| dav-path-version |
| old |
| new |
@skipOnRevaMaster
Examples:
| dav-path-version |
| spaces |


Expand All @@ -53,9 +50,6 @@ Feature: Search
| dav-path-version |
| old |
| new |
@skipOnRevaMaster
Examples:
| dav-path-version |
| spaces |


Expand All @@ -78,9 +72,6 @@ Feature: Search
| dav-path-version |
| old |
| new |
@skipOnRevaMaster
Examples:
| dav-path-version |
| spaces |


Expand All @@ -96,9 +87,6 @@ Feature: Search
| dav-path-version |
| old |
| new |
@skipOnRevaMaster
Examples:
| dav-path-version |
| spaces |


Expand All @@ -119,9 +107,6 @@ Feature: Search
| dav-path-version |
| old |
| new |
@skipOnRevaMaster
Examples:
| dav-path-version |
| spaces |


Expand All @@ -143,9 +128,6 @@ Feature: Search
| dav-path-version |
| old |
| new |
@skipOnRevaMaster
Examples:
| dav-path-version |
| spaces |


Expand All @@ -159,9 +141,6 @@ Feature: Search
| dav-path-version |
| old |
| new |
@skipOnRevaMaster
Examples:
| dav-path-version |
| spaces |


Expand All @@ -175,9 +154,6 @@ Feature: Search
| dav-path-version |
| old |
| new |
@skipOnRevaMaster
Examples:
| dav-path-version |
| spaces |


Expand All @@ -196,9 +172,6 @@ Feature: Search
| dav-path-version |
| old |
| new |
@skipOnRevaMaster
Examples:
| dav-path-version |
| spaces |


Expand All @@ -221,9 +194,6 @@ Feature: Search
| dav-path-version |
| old |
| new |
@skipOnRevaMaster
Examples:
| dav-path-version |
| spaces |


Expand Down Expand Up @@ -271,7 +241,7 @@ Feature: Search
| spaces |


Scenario Outline: using different search pattern. KQL feature
Scenario Outline: search resources using different search patterns (KQL feature)
Given using spaces DAV path
And user "Alice" has created a folder "subfolder" in space "find data"
When user "Alice" searches for '<pattern>' using the WebDAV API
Expand All @@ -281,8 +251,8 @@ Feature: Search
| <searchResult> |
Examples:
| description | pattern | searchResult |
| file name starts | fold* | /folderMain |
| file name ends | *der1 | /folderMain/SubFolder1 |
| starts with | fold* | /folderMain |
| ends with | *der1 | /folderMain/SubFolder1 |
| strict search | subfolder | /subfolder |
| using patern "name:" | name:*der2 | /folderMain/SubFolder1/subFOLDER2 |
| using the pattern "name:" where the value is in quotes | name:"*der2" | /folderMain/SubFolder1/subFOLDER2 |
18 changes: 3 additions & 15 deletions tests/acceptance/features/apiSearch/contentSearch.feature
Expand Up @@ -46,10 +46,6 @@ Feature: content search
| dav-path-version |
| old |
| new |

@skipOnStable3.0
Examples:
| dav-path-version |
| spaces |


Expand Down Expand Up @@ -125,10 +121,6 @@ Feature: content search
| dav-path-version |
| old |
| new |

@skipOnStable3.0
Examples:
| dav-path-version |
| spaces |


Expand All @@ -154,16 +146,12 @@ Feature: content search
| spacesFolderWithFile/spacesSubFolder/keywordAtLast.txt |
Examples:
| dav-path-version |
| old |
| new |

@skipOnStable3.0
Examples:
| dav-path-version |
| old |
| new |
| spaces |


Scenario Outline: using different search pattern. KQL feature
Scenario Outline: search resources using different search patterns (KQL feature)
Given using spaces DAV path
And user "Alice" has uploaded file with content "hello world, let start to test" to "technical task.txt"
And user "Alice" has uploaded file with content "it's been hell" to "task comments.txt"
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/features/apiSearch/tagSearch.feature
Expand Up @@ -236,7 +236,7 @@ Feature: tag search
| spaces |


Scenario Outline: using different search pattern. KQL feature
Scenario Outline: search resources using different search patterns (KQL feature)
Given using spaces DAV path
And user "Alice" has created the following folders
| path |
Expand Down

0 comments on commit 35f2a48

Please sign in to comment.