mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-30 23:46:28 +00:00 
			
		
		
		
	implements: https://github.com/meilisearch/specifications/blob/develop/text/0060-refashion-updates-apis.md linked PR: - #1889 - #1891 - #1892 - #1902 - #1906 - #1911 - #1914 - #1915 - #1916 - #1918 - #1924 - #1925 - #1926 - #1930 - #1936 - #1937 - #1942 - #1944 - #1945 - #1946 - #1947 - #1950 - #1951 - #1957 - #1959 - #1960 - #1961 - #1962 - #1964 - https://github.com/meilisearch/milli/pull/414 - https://github.com/meilisearch/milli/pull/409 - https://github.com/meilisearch/milli/pull/406 - https://github.com/meilisearch/milli/pull/418 - close #1687 - close #1786 - close #1940 - close #1948 - close #1949 - close #1932 - close #1956
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use serde_json::json;
 | |
| 
 | |
| use crate::common::Server;
 | |
| 
 | |
| #[actix_rt::test]
 | |
| async fn stats() {
 | |
|     let server = Server::new().await;
 | |
|     let index = server.index("test");
 | |
|     let (_, code) = index.create(Some("id")).await;
 | |
| 
 | |
|     assert_eq!(code, 202);
 | |
| 
 | |
|     index.wait_task(0).await;
 | |
| 
 | |
|     let (response, code) = index.stats().await;
 | |
| 
 | |
|     assert_eq!(code, 200);
 | |
|     assert_eq!(response["numberOfDocuments"], 0);
 | |
|     assert!(response["isIndexing"] == false);
 | |
|     assert!(response["fieldDistribution"]
 | |
|         .as_object()
 | |
|         .unwrap()
 | |
|         .is_empty());
 | |
| 
 | |
|     let documents = json!([
 | |
|         {
 | |
|             "id": 1,
 | |
|             "name": "Alexey",
 | |
|         },
 | |
|         {
 | |
|             "id": 2,
 | |
|             "age": 45,
 | |
|         }
 | |
|     ]);
 | |
| 
 | |
|     let (response, code) = index.add_documents(documents, None).await;
 | |
|     assert_eq!(code, 202);
 | |
|     assert_eq!(response["uid"], 1);
 | |
| 
 | |
|     index.wait_task(1).await;
 | |
| 
 | |
|     let (response, code) = index.stats().await;
 | |
| 
 | |
|     assert_eq!(code, 200);
 | |
|     assert_eq!(response["numberOfDocuments"], 2);
 | |
|     assert!(response["isIndexing"] == false);
 | |
|     assert_eq!(response["fieldDistribution"]["id"], 2);
 | |
|     assert_eq!(response["fieldDistribution"]["name"], 1);
 | |
|     assert_eq!(response["fieldDistribution"]["age"], 1);
 | |
| }
 | |
| 
 | |
| #[actix_rt::test]
 | |
| async fn error_get_stats_unexisting_index() {
 | |
|     let server = Server::new().await;
 | |
|     let (response, code) = server.index("test").stats().await;
 | |
| 
 | |
|     let expected_response = json!({
 | |
|         "message": "Index `test` not found.",
 | |
|         "code": "index_not_found",
 | |
|         "type": "invalid_request",
 | |
|         "link": "https://docs.meilisearch.com/errors#index_not_found"
 | |
|     });
 | |
| 
 | |
|     assert_eq!(response, expected_response);
 | |
|     assert_eq!(code, 404);
 | |
| }
 |