blob: d5ef71bdeed5005bae721e5715129738f37b3774 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.execution.junit2.ui.model;
import com.intellij.execution.junit2.TestProxy;
import com.intellij.execution.testframework.ui.BaseTestProxyNodeDescriptor;
import com.intellij.ide.util.treeView.NodeDescriptor;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.project.Project;
class TestProxyDescriptor extends BaseTestProxyNodeDescriptor<TestProxy> {
private static final Logger LOG = Logger.getInstance("#com.intellij.execution.junit2.ui.model.TestProxyDescriptor");
private static final int STATE_UP_TO_DATE = 0;
private static final int STATE_OUT_OF_DATE = 1;
private static final int STATE_UNKNOWN = 2;
private int myTimestamp = -1;
private int myLastChildCount = -1;
//private int myNeedsUpdate = STATE_UNKNOWN;
private int myLastMagnitude = -1;
public TestProxyDescriptor(final Project project, final NodeDescriptor parentDescriptor, final TestProxy test) {
super(project, test, parentDescriptor);
myTimestamp = test.getStateTimestamp();
myLastChildCount = test.getChildCount();
myName = test.toString();
}
public boolean update() {
final TestProxy test = getElement();
boolean needsUpdate = checkNeedsUpdate(test);
myTimestamp = test.getStateTimestamp();
myLastChildCount = test.getChildCount();
return needsUpdate;
}
private boolean checkNeedsUpdate(TestProxy test) {
int needsUpdate = STATE_UP_TO_DATE;
if (test.getChildCount() != myLastChildCount) {
needsUpdate = STATE_OUT_OF_DATE;
}
else if (test.getStateTimestamp() != myTimestamp) needsUpdate = STATE_UNKNOWN;
if (needsUpdate == STATE_UNKNOWN) {
final int magnitude = test.getState().getMagnitude();
needsUpdate = magnitude == myLastMagnitude ? STATE_UP_TO_DATE : STATE_OUT_OF_DATE;
myLastMagnitude = magnitude;
}
if (needsUpdate == STATE_UP_TO_DATE) return false;
if (needsUpdate == STATE_OUT_OF_DATE) {
return true;
}
LOG.error(String.valueOf(needsUpdate));
return true;
}
}