summaryrefslogtreecommitdiff
path: root/rest-api-spec/test/delete/50_refresh.yaml
blob: b550789e2cfafcfd4def1b25401ad37f38badf6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
"Refresh":

 - do:
      indices.create:
          index:    test_1
          body:
              settings:
                  refresh_interval: -1
                  number_of_replicas: 0
 - do:
      cluster.health:
          wait_for_status: green

 - do:
      index:
          index:   test_1
          type:    test
          id:      1
          body:    { foo: bar }
          refresh: 1

 - do:
      index:
          index:   test_1
          type:    test
          id:      2
          body:    { foo: bar }
          refresh: 1

 - do:
      search:
          index:   test_1
          type:    test
          body:
            query:   { terms: { _id: [1,2] }}

 - match: { hits.total: 2 }

 - do:
      delete:
          index:   test_1
          type:    test
          id:      1

 - do:
      search:
          index:   test_1
          type:    test
          body:
            query:   { terms: { _id: [1,2] }}

 - match: { hits.total: 2 }

 - do:
      delete:
          index:   test_1
          type:    test
          id:      2
          refresh: 1

# If a replica shard where doc 1 is located gets initialized at this point, doc 1
# won't be found by the following search as the shard gets automatically refreshed
# right before getting started. This is why this test only works with 0 replicas.

 - do:
      search:
          index:   test_1
          type:    test
          body:
            query:   { terms: { _id: [1,2] }}

 - match: { hits.total: 1 }