Skip to content
代码片段 群组 项目
提交 6efd5fd1 编辑于 作者: Pedro Pombeiro's avatar Pedro Pombeiro 提交者: Vladimir Shushlin
浏览文件

Ensure file object is closed in CsvBuilder::Gzip

Use Tempfile.create instead of Tempfile.open
上级 c352cd69
No related branches found
No related tags found
无相关合并请求
...@@ -41,14 +41,14 @@ ...@@ -41,14 +41,14 @@
it 'returns error' do it 'returns error' do
expect(result.error?).to eq(true) expect(result.error?).to eq(true)
expect(result.errors).to eq(['Feature not enabled']) expect(result.errors).to contain_exactly('Feature clickhouse_ci_analytics not enabled')
end end
end end
shared_examples "returns Not allowed error" do shared_examples "returns Not allowed error" do
it 'returns error' do it 'returns error' do
expect(result.error?).to eq(true) expect(result.error?).to eq(true)
expect(result.errors).to eq(['Not allowed']) expect(result.errors).to contain_exactly('Not allowed')
end end
end end
......
...@@ -12,12 +12,15 @@ class Gzip < CsvBuilder::Builder ...@@ -12,12 +12,15 @@ class Gzip < CsvBuilder::Builder
# > puts rows # > puts rows
# > end # > end
def render def render
Tempfile.open(['csv_builder_gzip', '.csv.gz']) do |tempfile| Tempfile.create(['csv_builder_gzip', '.csv.gz']) do |tempfile|
csv = CSV.new(Zlib::GzipWriter.open(tempfile.path)) Zlib::GzipWriter.open(tempfile.path) do |gz|
csv = CSV.new(gz)
write_csv csv, until_condition: -> {} # truncation must be handled outside of the CsvBuilder write_csv csv, until_condition: -> {} # truncation must be handled outside of the CsvBuilder
csv.close
end
csv.close
yield tempfile, @rows_written yield tempfile, @rows_written
end end
end end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册