Esempio n. 1
0
 def test_expand_action(self):
     self.assertEqual(helpers.expand_action({}), ({"index": {}}, {}))
     self.assertEqual(helpers.expand_action({"key": "val"}), ({
         "index": {}
     }, {
         "key": "val"
     }))
Esempio n. 2
0
 def test_expand_action_actions(self):
     self.assertEqual(
         helpers.expand_action(
             {"_op_type": "delete", "_id": "id", "_index": "index"}
         ),
         ({"delete": {"_id": "id", "_index": "index"}}, None),
     )
     self.assertEqual(
         helpers.expand_action(
             {"_op_type": "update", "_id": "id", "_index": "index", "key": "val"}
         ),
         ({"update": {"_id": "id", "_index": "index"}}, {"key": "val"}),
     )
     self.assertEqual(
         helpers.expand_action(
             {"_op_type": "create", "_id": "id", "_index": "index", "key": "val"}
         ),
         ({"create": {"_id": "id", "_index": "index"}}, {"key": "val"}),
     )
     self.assertEqual(
         helpers.expand_action(
             {
                 "_op_type": "create",
                 "_id": "id",
                 "_index": "index",
                 "_source": {"key": "val"},
             }
         ),
         ({"create": {"_id": "id", "_index": "index"}}, {"key": "val"}),
     )
Esempio n. 3
0
    def test__source_metadata_or_source(self):
        self.assertEqual(
            helpers.expand_action({"_source": {"key": "val"}}),
            ({"index": {}}, {"key": "val"}),
        )

        self.assertEqual(
            helpers.expand_action(
                {"_source": ["key"], "key": "val", "_op_type": "update"}
            ),
            ({"update": {"_source": ["key"]}}, {"key": "val"}),
        )

        self.assertEqual(
            helpers.expand_action(
                {"_source": True, "key": "val", "_op_type": "update"}
            ),
            ({"update": {"_source": True}}, {"key": "val"}),
        )

        # This case is only to ensure backwards compatibility with old functionality.
        self.assertEqual(
            helpers.expand_action(
                {"_source": {"key2": "val2"}, "key": "val", "_op_type": "update"}
            ),
            ({"update": {}}, {"key2": "val2"}),
        )
Esempio n. 4
0
 def test_expand_action_options(self):
     for option in (
         "_id",
         "_index",
         "_percolate",
         "_timestamp",
         "_type",
         "if_seq_no",
         "if_primary_term",
         "parent",
         "pipeline",
         "retry_on_conflict",
         "routing",
         "version",
         "version_type",
         ("_parent", "parent"),
         ("_retry_on_conflict", "retry_on_conflict"),
         ("_routing", "routing"),
         ("_version", "version"),
         ("_version_type", "version_type"),
         ("_if_seq_no", "if_seq_no"),
         ("_if_primary_term", "if_primary_term"),
     ):
         if isinstance(option, str):
             action_option = option
         else:
             option, action_option = option
         self.assertEqual(
             helpers.expand_action({"key": "val", option: 0}),
             ({"index": {action_option: 0}}, {"key": "val"}),
         )
 def test_string_actions_are_marked_as_simple_inserts(self):
     self.assertEquals(('{"index":{}}', "whatever"), helpers.expand_action('whatever'))
Esempio n. 6
0
 def test_string_actions_are_marked_as_simple_inserts(self):
     self.assertEqual(('{"index":{}}', "whatever"),
                      helpers.expand_action("whatever"))