| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 | 
							- #include <curl/curl.h>
 
- #include <gmock/gmock.h>
 
- #include <memory>
 
- #include <string>
 
- #include "prometheus/counter.h"
 
- #include "prometheus/detail/future_std.h"
 
- #include "prometheus/exposer.h"
 
- #include "prometheus/registry.h"
 
- namespace prometheus {
 
- namespace {
 
- using namespace testing;
 
- class IntegrationTest : public testing::Test {
 
-  public:
 
-   void SetUp() override {
 
-     exposer_ = detail::make_unique<Exposer>("127.0.0.1:0");
 
-     auto ports = exposer_->GetListeningPorts();
 
-     base_url_ = std::string("http://127.0.0.1:") + std::to_string(ports.at(0));
 
-   }
 
-   struct Resonse {
 
-     long code = 0;
 
-     std::string body;
 
-   };
 
-   Resonse FetchMetrics(std::string metrics_path) {
 
-     auto curl = std::shared_ptr<CURL>(curl_easy_init(), curl_easy_cleanup);
 
-     if (!curl) {
 
-       throw std::runtime_error("failed to initialize libcurl");
 
-     }
 
-     const auto url = base_url_ + metrics_path;
 
-     Resonse response;
 
-     curl_easy_setopt(curl.get(), CURLOPT_URL, url.c_str());
 
-     curl_easy_setopt(curl.get(), CURLOPT_WRITEDATA, &response.body);
 
-     curl_easy_setopt(curl.get(), CURLOPT_WRITEFUNCTION, WriteCallback);
 
-     CURLcode curl_error = curl_easy_perform(curl.get());
 
-     if (curl_error != CURLE_OK) {
 
-       throw std::runtime_error("failed to perform HTTP request");
 
-     }
 
-     curl_easy_getinfo(curl.get(), CURLINFO_RESPONSE_CODE, &response.code);
 
-     return response;
 
-   }
 
-   std::shared_ptr<Registry> RegisterSomeCounter(const std::string& name,
 
-                                                 const std::string& path) {
 
-     const auto registry = std::make_shared<Registry>();
 
-     BuildCounter().Name(name).Register(*registry).Add({}).Increment();
 
-     exposer_->RegisterCollectable(registry, path);
 
-     return registry;
 
-   };
 
-   std::unique_ptr<Exposer> exposer_;
 
-   std::string base_url_;
 
-   std::string default_metrics_path_ = "/metrics";
 
-  private:
 
-   static size_t WriteCallback(void* contents, size_t size, size_t nmemb,
 
-                               void* userp) {
 
-     auto response = reinterpret_cast<std::string*>(userp);
 
-     size_t realsize = size * nmemb;
 
-     response->append(reinterpret_cast<const char*>(contents), realsize);
 
-     return realsize;
 
-   }
 
- };
 
- TEST_F(IntegrationTest, doesNotExposeAnythingOnDefaultPath) {
 
-   const auto metrics = FetchMetrics(default_metrics_path_);
 
-   EXPECT_GE(metrics.code, 400);
 
- }
 
- TEST_F(IntegrationTest, exposeSingleCounter) {
 
-   const std::string counter_name = "example_total";
 
-   auto registry = RegisterSomeCounter(counter_name, default_metrics_path_);
 
-   const auto metrics = FetchMetrics(default_metrics_path_);
 
-   ASSERT_EQ(metrics.code, 200);
 
-   EXPECT_THAT(metrics.body, HasSubstr(counter_name));
 
- }
 
- TEST_F(IntegrationTest, exposesCountersOnDifferentUrls) {
 
-   const std::string first_metrics_path = "/first";
 
-   const std::string second_metrics_path = "/second";
 
-   const std::string first_counter_name = "first_total";
 
-   const std::string second_counter_name = "second_total";
 
-   const auto first_registry =
 
-       RegisterSomeCounter(first_counter_name, first_metrics_path);
 
-   const auto second_registry =
 
-       RegisterSomeCounter(second_counter_name, second_metrics_path);
 
-   // all set-up
 
-   const auto first_metrics = FetchMetrics(first_metrics_path);
 
-   const auto second_metrics = FetchMetrics(second_metrics_path);
 
-   // check results
 
-   ASSERT_EQ(first_metrics.code, 200);
 
-   ASSERT_EQ(second_metrics.code, 200);
 
-   EXPECT_THAT(first_metrics.body, HasSubstr(first_counter_name));
 
-   EXPECT_THAT(second_metrics.body, HasSubstr(second_counter_name));
 
-   EXPECT_THAT(first_metrics.body, Not(HasSubstr(second_counter_name)));
 
-   EXPECT_THAT(second_metrics.body, Not(HasSubstr(first_counter_name)));
 
- }
 
- TEST_F(IntegrationTest, unexposeRegistry) {
 
-   const std::string counter_name = "some_counter_total";
 
-   const auto registry =
 
-       RegisterSomeCounter(counter_name, default_metrics_path_);
 
-   exposer_->RemoveCollectable(registry, default_metrics_path_);
 
-   const auto metrics = FetchMetrics(default_metrics_path_);
 
-   ASSERT_EQ(metrics.code, 200);
 
-   EXPECT_THAT(metrics.body, Not(HasSubstr(counter_name)));
 
- }
 
- }  // namespace
 
- }  // namespace prometheus
 
 
  |