test/backup/unit/backup_test.rb in elasticsearch-extensions-0.0.31 vs test/backup/unit/backup_test.rb in elasticsearch-extensions-0.0.32
- old
+ new
@@ -1,5 +1,22 @@
+# Licensed to Elasticsearch B.V. under one or more contributor
+# license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright
+# ownership. Elasticsearch B.V. licenses this file to you under
+# the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
require 'test_helper'
require 'logger'
# Mock the Backup modules and classes so we're not depending on the gem in the unit test
#
@@ -103,8 +120,12 @@
.returns({"_scroll_id" => "ghi789",
"hits" => { "hits" => [] }
})
@subject.__perform_single
+ end
+
+ should "sanitize filename" do
+ assert_equal "foo-bar-baz", @subject.__sanitize_filename("foo/bar\nbaz")
end
end
end