summaryrefslogtreecommitdiffstats
path: root/devtools/client/memory/test/xpcshell/test_pop_view_01.js
blob: 5482f1e7b964a7addc09c3033d23064083a68fa3 (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
74
75
76
77
78
79
80
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test popping views from each intermediate individuals model state.

const {
  censusState,
  viewState,
  individualsState,
} = require("resource://devtools/client/memory/constants.js");
const {
  fetchIndividuals,
  takeSnapshotAndCensus,
} = require("resource://devtools/client/memory/actions/snapshot.js");
const {
  changeView,
  popViewAndRefresh,
} = require("resource://devtools/client/memory/actions/view.js");

const TEST_STATES = [
  individualsState.COMPUTING_DOMINATOR_TREE,
  individualsState.FETCHING,
  individualsState.FETCHED,
];

add_task(async function() {
  const front = new StubbedMemoryFront();
  const heapWorker = new HeapAnalysesClient();
  await front.attach();
  const store = Store();
  const { getState, dispatch } = store;

  equal(getState().individuals, null, "no individuals state by default");

  dispatch(changeView(viewState.CENSUS));
  dispatch(takeSnapshotAndCensus(front, heapWorker));
  await waitUntilCensusState(store, s => s.census, [censusState.SAVED]);

  const root = getState().snapshots[0].census.report;
  ok(root, "Should have a census");

  const reportLeafIndex = findReportLeafIndex(root);
  ok(reportLeafIndex, "Should get a reportLeafIndex");

  const snapshotId = getState().snapshots[0].id;
  ok(snapshotId, "Should have a snapshot id");

  const breakdown = getState().snapshots[0].census.display.breakdown;
  ok(breakdown, "Should have a breakdown");

  for (const state of TEST_STATES) {
    dumpn(`Testing popping back to the old view from state = ${state}`);

    dispatch(
      fetchIndividuals(heapWorker, snapshotId, breakdown, reportLeafIndex)
    );

    // Wait for the expected test state.
    await waitUntilState(store, s => {
      return (
        s.view.state === viewState.INDIVIDUALS &&
        s.individuals &&
        s.individuals.state === state
      );
    });
    ok(true, `Reached state = ${state}`);

    // Pop back to the CENSUS state.
    dispatch(popViewAndRefresh(heapWorker));
    await waitUntilState(store, s => {
      return s.view.state === viewState.CENSUS;
    });
    ok(!getState().individuals, "Should no longer have individuals");
  }

  heapWorker.destroy();
  await front.detach();
});