Gzip input plugin not working for local gzip files?

i am wondering if logstash can read local gzip files? It never worked before. Below is my config. Appreciate some advice, tks!

input {
file {
path => "/Users/Desktop/log_file/test.log.gz"
start_position => "beginning"
codec => "gzip_lines"
type => "gzip"
ignore_older => 0
sincedb_path => "/dev/null"
}
}