elm-pages-v3-beta/tests/GlobTests.elm

148 lines
5.4 KiB
Elm
Raw Normal View History

2021-03-31 00:16:32 +03:00
module GlobTests exposing (all)
import Expect
import Glob
2021-04-02 23:54:42 +03:00
import Test exposing (Test, describe, test)
2021-03-31 00:16:32 +03:00
2021-04-02 23:54:42 +03:00
all : Test
2021-03-31 00:16:32 +03:00
all =
2021-04-01 05:55:28 +03:00
describe "glob"
[ test "literal" <|
\() ->
Glob.literal "hello"
|> expect "hello"
{ expectedMatch = "hello"
2021-04-01 05:55:28 +03:00
, expectedPattern = "hello"
}
, test "capture" <|
\() ->
Glob.succeed identity
|> Glob.capture Glob.wildcard
|> Glob.ignore (Glob.literal ".txt")
|> expect "my-file.txt"
{ expectedMatch = "my-file"
2021-04-01 05:55:28 +03:00
, expectedPattern = "*.txt"
}
, test "oneOf" <|
\() ->
Glob.succeed Tuple.pair
|> Glob.capture Glob.wildcard
|> Glob.ignore (Glob.literal ".")
|> Glob.capture
2021-04-01 05:55:28 +03:00
(Glob.oneOf
( ( "yml", Yml )
, [ ( "json", Json )
]
2021-03-31 01:37:03 +03:00
)
2021-04-01 05:55:28 +03:00
)
-- https://runkit.com/embed/05epbnc0c7g1
|> expect "data-file.json"
{ expectedMatch = ( "data-file", Json )
2021-04-01 05:55:28 +03:00
, expectedPattern = "*.(yml|json)"
}
, test "at least one" <|
\() ->
Glob.succeed identity
|> Glob.ignore Glob.wildcard
|> Glob.ignore (Glob.literal ".")
|> Glob.capture
2021-04-01 05:55:28 +03:00
(Glob.atLeastOne
( ( "yml", Yml )
, [ ( "json", Json )
]
2021-03-31 23:56:56 +03:00
)
2021-04-01 05:55:28 +03:00
)
-- https://runkit.com/embed/05epbnc0c7g1
|> expect "data-file.jsonymljsonjson"
{ expectedMatch = ( Json, [ Yml, Json, Json ] )
2021-04-01 05:55:28 +03:00
, expectedPattern = "*.+(yml|json)"
}
, test "optional group - no match" <|
\() ->
zeroOrMoreGlob
|> expect "test/a/x.js"
2021-04-01 05:55:28 +03:00
-- test/a/x.js
-- https://github.com/micromatch/micromatch/blob/fe4858b0c63b174fd3ae22674db39119b8fa4392/test/api.capture.js#L42
{ expectedMatch = Nothing
2021-04-01 05:55:28 +03:00
, expectedPattern = "test/a*(a|b)/x.js"
}
, test "optional group - single match" <|
\() ->
zeroOrMoreGlob
|> expect "test/ab/x.js"
2021-04-01 05:55:28 +03:00
-- test/ab/x.js
-- https://github.com/micromatch/micromatch/blob/fe4858b0c63b174fd3ae22674db39119b8fa4392/test/api.capture.js#L44
{ expectedMatch = Just "b"
2021-04-01 05:55:28 +03:00
, expectedPattern = "test/a*(a|b)/x.js"
}
, test "optional group - multiple matches" <|
\() ->
zeroOrMoreGlob
|> expect "test/aba/x.js"
2021-04-01 05:55:28 +03:00
-- test/aba/x.js
-- https://github.com/micromatch/micromatch/blob/fe4858b0c63b174fd3ae22674db39119b8fa4392/test/api.capture.js#L45
{ expectedMatch = Just "ba"
2021-04-01 05:55:28 +03:00
, expectedPattern = "test/a*(a|b)/x.js"
}
, test "new star" <|
\() ->
Glob.wildcard
|> expect "star-pattern"
{ expectedMatch = "star-pattern"
2021-04-01 05:55:28 +03:00
, expectedPattern = "*"
}
, test "new star with literal" <|
\() ->
Glob.succeed Tuple.pair
|> Glob.capture Glob.wildcard
|> Glob.ignore (Glob.literal "/")
|> Glob.capture (Glob.wildcard |> Glob.map String.toUpper)
|> Glob.ignore (Glob.literal ".txt")
|> expect "before-slash/after-slash.txt"
{ expectedMatch = ( "before-slash", "AFTER-SLASH" )
2021-04-01 05:55:28 +03:00
, expectedPattern = "*/*.txt"
}
, test "recursive match" <|
\() ->
Glob.succeed Tuple.pair
|> Glob.capture Glob.recursiveWildcard
|> Glob.ignore (Glob.literal "/")
|> Glob.capture Glob.wildcard
|> Glob.ignore (Glob.literal ".txt")
|> expect "a/b/c/d.txt"
{ expectedMatch = ( "a/b/c", "d" )
2021-04-01 05:55:28 +03:00
, expectedPattern = "**/*.txt"
}
]
2021-03-31 02:04:05 +03:00
zeroOrMoreGlob : Glob.Glob (Maybe String)
zeroOrMoreGlob =
2021-03-31 05:55:52 +03:00
Glob.succeed identity
|> Glob.ignore (Glob.literal "test/a")
|> Glob.capture (Glob.zeroOrMore [ "a", "b" ])
|> Glob.ignore (Glob.literal "/x.js")
2021-03-31 00:16:32 +03:00
2021-03-31 01:37:03 +03:00
type DataExtension
= Yml
| Json
2021-03-31 00:16:32 +03:00
expect :
String
->
{ expectedMatch : match
, expectedPattern : String
}
-> Glob.Glob match
-> Expect.Expectation
expect filePath { expectedMatch, expectedPattern } glob =
glob
|> Glob.run filePath
|> Expect.equal
{ pattern = expectedPattern
, match = expectedMatch
}