mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 08:00:05 +00:00 
			
		
		
		
	Basic parsing for Archive II file
This commit is contained in:
		
							parent
							
								
									59d06a8632
								
							
						
					
					
						commit
						33c114ee9d
					
				
					 14 changed files with 412 additions and 1 deletions
				
			
		
							
								
								
									
										33
									
								
								test/source/scwx/util/rangebuf.test.cpp
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								test/source/scwx/util/rangebuf.test.cpp
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,33 @@ | |||
| #include <scwx/util/rangebuf.hpp> | ||||
| 
 | ||||
| #include <gtest/gtest.h> | ||||
| #include <boost/iostreams/copy.hpp> | ||||
| #include <boost/iostreams/filtering_streambuf.hpp> | ||||
| 
 | ||||
| namespace scwx | ||||
| { | ||||
| namespace util | ||||
| { | ||||
| 
 | ||||
| TEST(rangebuf, smiles_mile) | ||||
| { | ||||
|    std::istringstream iss("smiles"); | ||||
|    iss.seekg(1); | ||||
|    util::rangebuf rb(iss.rdbuf(), 4); | ||||
| 
 | ||||
|    std::ostringstream oss; | ||||
| 
 | ||||
|    boost::iostreams::filtering_streambuf<boost::iostreams::input> in; | ||||
|    in.push(rb); | ||||
| 
 | ||||
|    std::streamsize bytesCopied = boost::iostreams::copy(in, oss); | ||||
|    std::string     substring {oss.str()}; | ||||
| 
 | ||||
|    EXPECT_EQ(substring, "mile"); | ||||
|    EXPECT_EQ(bytesCopied, 4); | ||||
|    EXPECT_EQ(iss.tellg(), 5); | ||||
|    EXPECT_EQ(iss.eof(), false); | ||||
| } | ||||
| 
 | ||||
| } // namespace util
 | ||||
| } // namespace scwx
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Paulat
						Dan Paulat