Sha256: 9fa2c9d7f26405ac7fe0d0c2306c996a81e0a3a27221fe5446d2e19d6ab33a96
Contents?: true
Size: 1.64 KB
Versions: 1
Compression:
Stored size: 1.64 KB
Contents
# encoding: utf-8 require 'logstash/outputs/kusto' require 'logstash/codecs/plain' require 'logstash/event' describe LogStash::Outputs::Kusto do let(:options) { { "path" => "./kusto_tst/%{+YYYY-MM-dd-HH-mm}", "ingest_url" => "https://ingest-sdkse2etest.eastus.kusto.windows.net/", "app_id" => "myid", "app_key" => "mykey", "app_tenant" => "mytenant", "database" => "mydatabase", "table" => "mytable", "json_mapping" => "mymapping" } } describe '#register' do it 'doesnt allow the path to start with a dynamic string' do kusto = described_class.new(options.merge( {'path' => '/%{name}'} )) expect { kusto.register }.to raise_error(LogStash::ConfigurationError) kusto.close end it 'path must include a dynamic string to allow file rotation' do kusto = described_class.new(options.merge( {'path' => '/{name}'} )) expect { kusto.register }.to raise_error(LogStash::ConfigurationError) kusto.close end dynamic_name_array = ['/a%{name}/', '/a %{name}/', '/a- %{name}/', '/a- %{name}'] context 'doesnt allow the root directory to have some dynamic part' do dynamic_name_array.each do |test_path| it "with path: #{test_path}" do kusto = described_class.new(options.merge( {'path' => test_path} )) expect { kusto.register }.to raise_error(LogStash::ConfigurationError) kusto.close end end end it 'allow to have dynamic part after the file root' do kusto = described_class.new(options.merge({'path' => '/tmp/%{name}'})) expect { kusto.register }.not_to raise_error kusto.close end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
logstash-output-kusto-1.0.4-java | spec/outputs/kusto_spec.rb |