Skip to content
代码片段 群组 项目
提交 bbd7d5c2 编辑于 作者: Maxime Orefice's avatar Maxime Orefice 提交者: Maxime Orefice
浏览文件

Add spec to track artifact size when reading blob

上级 9383429c
No related branches found
No related tags found
无相关合并请求
......@@ -53,6 +53,15 @@
expect { |b| artifact.each_blob(&b) }.to raise_error(described_class::NotSupportedAdapterError)
end
end
context 'pushes artifact_size to application context' do
let(:artifact) { create(:ci_job_artifact, :junit) }
it 'logs artifact size', :aggregate_failures do
expect { |b| artifact.each_blob(&b) }.to yield_control.once
expect(Gitlab::ApplicationContext.current).to include("meta.artifact_size" => artifact.size)
end
end
end
context 'ActiveRecord scopes' do
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册