| 
									
										
										
										
											2018-06-05 10:38:32 -07:00
										 |  |  | // Copyright 2018 The Prometheus Authors
 | 
					
						
							|  |  |  | // 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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-03 04:35:24 -07:00
										 |  |  | //go:build !noprocesses
 | 
					
						
							| 
									
										
										
										
											2018-06-05 10:38:32 -07:00
										 |  |  | // +build !noprocesses
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package collector | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	"io" | 
					
						
							|  |  |  | 	"log/slog" | 
					
						
							| 
									
										
										
										
											2018-06-05 10:38:32 -07:00
										 |  |  | 	"testing" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-07 00:25:05 -08:00
										 |  |  | 	"github.com/alecthomas/kingpin/v2" | 
					
						
							| 
									
										
										
										
											2019-04-10 09:16:12 -07:00
										 |  |  | 	"github.com/prometheus/procfs" | 
					
						
							| 
									
										
										
										
											2018-06-05 10:38:32 -07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestReadProcessStatus(t *testing.T) { | 
					
						
							|  |  |  | 	if _, err := kingpin.CommandLine.Parse([]string{"--path.procfs", "fixtures/proc"}); err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	want := 1 | 
					
						
							| 
									
										
										
										
											2019-04-10 09:16:12 -07:00
										 |  |  | 	fs, err := procfs.NewFS(*procPath) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Errorf("failed to open procfs: %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-09-11 01:51:28 -07:00
										 |  |  | 	c := processCollector{fs: fs, logger: slog.New(slog.NewTextHandler(io.Discard, nil))} | 
					
						
							| 
									
										
										
										
											2021-10-08 01:39:26 -07:00
										 |  |  | 	pids, states, threads, _, err := c.getAllocatedThreads() | 
					
						
							| 
									
										
										
										
											2018-06-05 10:38:32 -07:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Cannot retrieve data from procfs getAllocatedThreads function: %v ", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if threads < want { | 
					
						
							|  |  |  | 		t.Fatalf("Current threads: %d Shouldn't be less than wanted %d", threads, want) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if states == nil { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		t.Fatalf("Process states cannot be nil %v:", states) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	maxPid, err := readUintFromFile(procFilePath("sys/kernel/pid_max")) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Unable to retrieve limit number of maximum pids alloved %v\n", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if uint64(pids) > maxPid || pids == 0 { | 
					
						
							|  |  |  | 		t.Fatalf("Total running pids cannot be greater than %d or equals to 0", maxPid) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |