history_require.go ×3

Frontier kind: Joint frontier

unlabeled · c_6adb8626f294

1 test · 2245 LOC · 106 files · introduces 1 test · 25 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
3 ranges25 lines · 1 files
Tests
1 test

Contains — complete concept membership

All code (extent)
348 ranges2245 lines · 106 files · Browse complete extent
All tests (intent)
1 testBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

1 test introduced at this concept.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 25 introduced LOC across 3 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/common/testing/historyrequire/history_require.go 25 introduced LOC · 3 ranges

Open complete file

160 }
161
162 > func (h HistoryRequire) WaitForHistoryEventsSuffix(expectedHistorySuffix string, actualHistoryEventsReader HistoryEventsReader, waitFor time.Duration, tick time.Duration) { history_require.go
163 > if th, ok := h.t.(helper); ok {
164 > th.Helper()
165 > }
166
167 > expectedHistoryEvents, expectedEventsAttributes := h.parseHistory(expectedHistorySuffix) history_require.go
168 >
169 > expectedCompactHistory := h.formatHistoryEvents(expectedHistoryEvents, true)
170 >
171 > var actualHistoryEvents []*historypb.HistoryEvent
172 > require.EventuallyWithT(h.t, func(t *assert.CollectT) {
173 > actualHistoryEvents = actualHistoryEventsReader()
174 >
175 > require.GreaterOrEqualf(t, len(actualHistoryEvents), len(expectedHistoryEvents),
176 > "Length of actual history(%d) must be greater or equal to the length of expected history suffix(%d) - actual history: \n%v",
177 > len(actualHistoryEvents), len(expectedHistoryEvents), h.formatHistoryEvents(actualHistoryEvents, true))
178 >
179 > actualHistoryEvents = actualHistoryEvents[len(actualHistoryEvents)-len(expectedHistoryEvents):]
180 > actualHistoryEvents = h.sanitizeActualHistoryEventsForEquals(expectedHistoryEvents, actualHistoryEvents)
181 > actualCompactHistory := h.formatHistoryEvents(actualHistoryEvents, true)
182 >
183 > require.Equalf(t, expectedCompactHistory, actualCompactHistory,
184 > "Expected history suffix is not found in actual history. Expected suffix:\n%s\nLast actual:\n%s",
185 > expectedCompactHistory, actualCompactHistory)
186 > }, waitFor, tick)
187
188 // TODO: Now if expected sequence of events is reached, all attributes must match.
190 // needs to be moved to Eventually block. This will require passing `t`
191 // all way down and replace `require` with `assert`.
192 > h.equalHistoryEventsAttributes(expectedEventsAttributes, actualHistoryEvents) history_require.go
193 }
194