mirror of
				https://github.com/privacore/open-source-search-engine.git
				synced 2025-11-03 16:06:13 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright Matt Wells 2009
 | 
						|
 | 
						|
#ifndef GB_TEST_H
 | 
						|
#define GB_TEST_H
 | 
						|
 | 
						|
#include "Msg4.h"
 | 
						|
#include "Spider.h"
 | 
						|
#include "HashTableX.h"
 | 
						|
 | 
						|
class Test {
 | 
						|
 | 
						|
 public:
 | 
						|
 | 
						|
	Test();
 | 
						|
 | 
						|
	char *getTestDir ( );
 | 
						|
 | 
						|
	//char *m_testDir;
 | 
						|
 | 
						|
	bool init ( ) ;
 | 
						|
	void reset ( ) ;
 | 
						|
 | 
						|
	void removeFiles();
 | 
						|
	void initTestRun();
 | 
						|
	bool  injectLoop();
 | 
						|
 | 
						|
	void stopIt();
 | 
						|
 | 
						|
	// is test running now?
 | 
						|
	bool m_isRunning;
 | 
						|
 | 
						|
	// how many urls we added to spiderdb via msg4
 | 
						|
	int32_t m_urlsAdded;
 | 
						|
 | 
						|
	int32_t m_urlsIndexed;
 | 
						|
 | 
						|
	//bool m_spiderLinks;
 | 
						|
	bool m_bypassMenuElimination;
 | 
						|
 | 
						|
	// are still in a loop adding urls to spiderdb via msg4?
 | 
						|
	bool m_isAdding;
 | 
						|
 | 
						|
	int64_t m_testStartTime;
 | 
						|
	
 | 
						|
	// this is set to the errno if any error encounted during the test
 | 
						|
	int32_t m_errno ;
 | 
						|
 | 
						|
	// unique test id
 | 
						|
	int32_t m_runId ;
 | 
						|
 | 
						|
	char *m_coll ;
 | 
						|
 | 
						|
	SpiderRequest m_sreq;
 | 
						|
	Msg4 m_msg4;
 | 
						|
 | 
						|
	// dedup table
 | 
						|
	HashTableX m_dt;
 | 
						|
 | 
						|
	bool m_testSpiderEnabledSaved ;
 | 
						|
	bool m_testParserEnabledSaved ;
 | 
						|
 | 
						|
	// file of urls in the test subdir is read into this buffer
 | 
						|
	char *m_urlBuf ;
 | 
						|
	char *m_urlEnd ;
 | 
						|
	char *m_urlPtr ;
 | 
						|
};
 | 
						|
 | 
						|
// the global class
 | 
						|
extern Test g_test;
 | 
						|
 | 
						|
#endif // GB_TEST_H
 |