@@ -45,10 +45,13 @@ public static function queryDataProvider()
45
45
['ranked>2018/05/01 ' , ['keywords ' => null , 'options ' => ['ranked ' => ['gte ' => static ::parseTime ('2018-05-02 ' )]]]],
46
46
['ranked>="2020-07-21 12:30:30 +09:00" ' , ['keywords ' => null , 'options ' => ['ranked ' => ['gte ' => static ::parseTime ('2020-07-21 03:30:30 ' )]]]],
47
47
['ranked="2020-07-21 12:30:30 +09:00" ' , ['keywords ' => null , 'options ' => ['ranked ' => ['gte ' => static ::parseTime ('2020-07-21 03:30:30 ' ), 'lt ' => static ::parseTime ('2020-07-21 03:30:31 ' )]]]],
48
+ ['ranked>="2020-07-21 12:30:30 +09:00" ranked<="2020-08-21 13:40:40 +09:00" ' , ['keywords ' => null , 'options ' => ['ranked ' => ['gte ' => static ::parseTime ('2020-07-21 03:30:30 ' ), 'lt ' => static ::parseTime ('2020-08-21 04:40:41 ' )]]]],
48
49
['ranked="invalid date format" ' , ['keywords ' => 'ranked="invalid date format" ' , 'options ' => []]],
49
50
['tag=hello ' , ['keywords ' => null , 'options ' => ['tag ' => ['hello ' ]]]],
50
51
['tag=hello tag=world ' , ['keywords ' => null , 'options ' => ['tag ' => ['hello ' , 'world ' ]]]],
51
52
['tag="hello world" ' , ['keywords ' => null , 'options ' => ['tag ' => ['hello world ' ]]]],
53
+ ['tag="hello world" tag="foo bar" ' , ['keywords ' => null , 'options ' => ['tag ' => ['hello world ' , 'foo bar ' ]]]],
54
+ ['tag="hello world"aa tag="foo bar" ' , ['keywords ' => 'aa ' , 'options ' => ['tag ' => ['hello world ' , 'foo bar ' ]]]],
52
55
53
56
// multiple options
54
57
['artist=hello creator:world ' , ['keywords ' => null , 'options ' => ['artist ' => 'hello ' , 'creator ' => 'world ' ]]],
@@ -88,7 +91,7 @@ public static function queryDataProvider()
88
91
['find me songs by artist=singer please ' , ['keywords ' => 'find me songs by please ' , 'options ' => ['artist ' => 'singer ' ]]],
89
92
['really like artist="name with space" yes ' , ['keywords ' => 'really like yes ' , 'options ' => ['artist ' => 'name with space ' ]]],
90
93
['weird artist=double"quote ' , ['keywords ' => 'weird ' , 'options ' => ['artist ' => 'double"quote ' ]]],
91
- ['weird artist="nested "quote"" thing ' , ['keywords ' => 'weird thing ' , 'options ' => ['artist ' => 'nested "quote" ' ]]],
94
+ ['weird artist="nested \ "quote\ "" thing ' , ['keywords ' => 'weird thing ' , 'options ' => ['artist ' => 'nested "quote" ' ]]],
92
95
['artist=><something ' , ['keywords ' => null , 'options ' => ['artist ' => '><something ' ]]],
93
96
['unrecognised=keyword ' , ['keywords ' => 'unrecognised=keyword ' , 'options ' => []]],
94
97
['cs=nope ' , ['keywords ' => 'cs=nope ' , 'options ' => []]],
0 commit comments