blob: eb64f63f73e8c568e205d8822522e50452c0b282 [file] [log] [blame]
/*
* Copyright 2012 Google Inc.
*
* 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.
*/
// Author: mmohabey@google.com (Megha Mohabey)
#ifndef NET_INSTAWEB_REWRITER_PUBLIC_FLUSH_EARLY_INFO_FINDER_TEST_BASE_H_
#define NET_INSTAWEB_REWRITER_PUBLIC_FLUSH_EARLY_INFO_FINDER_TEST_BASE_H_
#include "net/instaweb/rewriter/public/flush_early_info_finder.h"
#include "pagespeed/kernel/base/basictypes.h"
#include "pagespeed/kernel/base/timer.h"
namespace net_instaweb {
class RewriteDriver;
// By default, FlushEarlyInfoFinder does not return meaningful results. This
// class can be used by tests which manually manage FlushEarlyRenderInfo.
class MeaningfulFlushEarlyInfoFinder : public FlushEarlyInfoFinder {
public:
MeaningfulFlushEarlyInfoFinder()
: FlushEarlyInfoFinder(NULL), num_compute_calls_(0) {}
virtual ~MeaningfulFlushEarlyInfoFinder() {}
virtual bool IsMeaningful(const RewriteDriver* driver) const { return true; }
virtual int64 cache_expiration_time_ms() const {
return Timer::kHourMs;
}
virtual void ComputeFlushEarlyInfo(RewriteDriver* driver) {
num_compute_calls_++;
}
int num_compute_calls() {
return num_compute_calls_;
}
void Clear() {
num_compute_calls_ = 0;
}
private:
int num_compute_calls_;
};
} // namespace net_instaweb
#endif // NET_INSTAWEB_REWRITER_PUBLIC_FLUSH_EARLY_INFO_FINDER_TEST_BASE_H_