Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: open-source-labs/Reactime
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: open-source-labs/Reactime
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ast-implementation-testing
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on Oct 1, 2019

  1. Copy the full SHA
    0ce0c83 View commit details

Commits on Oct 2, 2019

  1. Copy the full SHA
    d211572 View commit details
  2. Integration test began

    davidchai717 committed Oct 2, 2019
    Copy the full SHA
    dd46bb0 View commit details
Showing with 159 additions and 6 deletions.
  1. +1 −0 package.json
  2. +142 −0 package/__tests__/integration.test.js
  3. +4 −1 package/astParser.js
  4. +12 −5 package/linkFiber.js
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"test": "jest --verbose --coverage --watchAll",
"test-integration": "MODE='test' jest package/__tests__/integration.test.js",
"lint": "eslint --ext .js --ext .jsx src",
"docker-build": "docker build -t reacttt/test-lint .",
"docker-check": "docker-compose up --abort-on-container-exit",
142 changes: 142 additions & 0 deletions package/__tests__/integration.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
import React, { Component, useState, useReducer } from 'react';
import ReactDOM from 'react-dom';

// importing our package entry point
const reactime = require('../index');
// Integration test
// mocks
// dummy react components and stuff

// Test topmost React component, which renders a Stateful component
const MockApp = () => {
return (
<div id="app">
<Stateful />
{/* <Hook /> */}
</div>
)
}

// Test Stateful component contains a mock state. It also renders two child components - ChildStateful and Hook (temporarily disabled)
class Stateful extends Component {
constructor () {
super();
this.state = {
number: 0,
};
}
render() {
return (<div id="stateful">
<ChildStateful />
{this.state.number}
{/* <Hook/> */}
</div>)
}
}

class ChildStateful extends Component {
constructor () {
super();
this.state = {
foo: 'bar',
};
}
render() {
return (<div id="child-stateful">
{this.state.foo}
</div>)
}
}


const Hook = () => {
const [letter, addLetter] = useState('a');
return (
<div id="hook">
{letter}
</div>
)
}

describe('NPM Package integration test', () => {
// Storage for all the snapshots
let snaps = [],
// variable to be used to be fiber tree location of the test Stateful component
stateful,
// same but for ChildStateful
childstateful,
// for Hook (not currently in use)
hook;

describe('Link fiber', () => {
beforeAll((done) => {
// Listening for snapshots from linkFiber
window.addEventListener('message', msg => {
const { action } = msg.data;
switch (action) {
case 'recordSnap':
snaps.push(msg.data.payload);
// Once received, this part is done
done();
break;
default:
break;
}
})

// Create the DOM node for our root div
const testDiv = document.createElement('div');
// Inject
ReactDOM.render(<MockApp />, testDiv);
// Run the root div through reactime (imported earlier)
reactime(testDiv);

// Assigning the locations of the test components on the fiber tree to variables
stateful = testDiv._reactRootContainer._internalRoot.current.child.child.child;
childstateful = stateful.child.child;

// Make linkFiber send the first processed screenshot
window.postMessage({ action: 'contentScriptStarted' }, '*');
})

test ('should send the snapshot via message', () => {
console.log('snaps arr', snaps);
expect(snaps.length).toBeGreaterThanOrEqual(1);
})

test ('Should be able to retract the state from stateful components', () => {
console.log('state of the first component', JSON.stringify(snaps[0].children[0].state));
// Check if the tree returned by the first snapshot (snaps[0]) contains the correct states
expect(JSON.stringify(snaps[0].children[0].state)).toBe(JSON.stringify(stateful.memoizedState));
expect(JSON.stringify(snaps[0].children[0].children[0].state)).toBe(JSON.stringify(childstateful.memoizedState));
});

xtest ('Should be able to retract the state from hook components', () => {

})

xtest ('Should be able to detect when an user uses setState', () => {

});
})
describe('Time jump', () => {
xtest('Should be able to perform time jump for stateful components', () => {
window.postMessage()
})
xtest('App should reflect the desired state snapshot after jumping', () => {

})
})
})
// Upon invoking reactime on the root container, the app should
// should send the snapshot via message
// Should modify setState if the component is stateful
// Should modify useState if the component uses hooks
// Should not invoke changeUseState if component doesn't use hooks
// Upon receiving a request to time jump, the app should
// invoke timejump function
// mode.jumping should be switched to true while jumping
// setState should not be modified while jumping
// useState should not be modified while jumping
// the app should reflect the desired state snapshot after jumping
// mode.jumping should be switched back to false after jumping
5 changes: 4 additions & 1 deletion package/astParser.js
Original file line number Diff line number Diff line change
@@ -14,15 +14,18 @@ module.exports = elementType => {
ast = ast.body;
// Iterate through AST of every function declaration
// Check within each function declaration if there are hook declarations
console.log('problem with ast', ast)
ast.forEach(functionDec => {
const { body } = functionDec.body;
console.log('functionDec', functionDec.expression.body)
const { body } = functionDec.expression.body;
const statements = [];
// Traverse through the function's funcDecs and Expression Statements
body.forEach(program => {
// Hook Declarations will only be under 'VariableDeclaration' type
if (program.type === 'VariableDeclaration') {
program.declarations.forEach(dec => {
statements.push(dec.id.name);
console.log('statements array', statements);
});
}
});
17 changes: 12 additions & 5 deletions package/linkFiber.js
Original file line number Diff line number Diff line change
@@ -17,11 +17,18 @@ module.exports = (snap, mode) => {
// wouldn't think we want to create new snapshots
if (mode.jumping || mode.paused) return;
const payload = snap.tree.getCopy();
// console.log('payload', payload);
window.postMessage({
action: 'recordSnap',
payload,
});

if (process.env.MODE === 'test') {
window.postMessage({
action: 'recordSnap',
payload,
}, '*');
} else {
window.postMessage({
action: 'recordSnap',
payload,
});
}
}

function changeSetState(component) {