You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							20 lines
						
					
					
						
							434 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							20 lines
						
					
					
						
							434 B
						
					
					
				
								//go:build ydb
							 | 
						|
								// +build ydb
							 | 
						|
								
							 | 
						|
								package ydb
							 | 
						|
								
							 | 
						|
								import (
							 | 
						|
									"github.com/seaweedfs/seaweedfs/weed/filer/store_test"
							 | 
						|
									"testing"
							 | 
						|
								)
							 | 
						|
								
							 | 
						|
								func TestStore(t *testing.T) {
							 | 
						|
									// run "make test_ydb" under docker folder.
							 | 
						|
									// to set up local env
							 | 
						|
									if false {
							 | 
						|
										store := &YdbStore{}
							 | 
						|
										store.initialize("/buckets", "grpc://localhost:2136/?database=local", "seaweedfs", true, 10, 50,
							 | 
						|
											true, 200, true, 5, 1000, 2000)
							 | 
						|
										store_test.TestFilerStore(t, store)
							 | 
						|
									}
							 | 
						|
								}
							 |