Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Algoliax compiles in prod mode during tests, causing real API calls instead of using mock server #114

Open
Kasse-Dembele opened this issue Mar 26, 2025 · 2 comments

Comments

@Kasse-Dembele
Copy link
Contributor

Problem

When running tests, the Algoliax library is making real Algolia API calls instead of using the mock server. This happens because the library is being compiled in production mode (prod) even during test execution.

Current Behavior

  • Library sends requests to https://.algolia.net/1/indexes/... during tests
  • Expected to use mock server URLs (http://localhost:8002/...) in test environment
  • Added debug logging shows Compiling in environment: prod during compilation

Expected Behavior

  • Library should compile in test mode when running tests
  • Should use mock server URLs in test environment as defined in the if Mix.env() == :test block

Technical Details

The issue appears to be in the compilation process. The environment check in lib/algoliax/routes.ex is not working as expected:

if Mix.env() == :test do
  defp url_read do
    port = System.get_env("SLACK_MOCK_API_PORT", "8002")
    "http://localhost:#{port}/{{application_id}}/read"
  end
  # ...
else
  defp url_read do
    "https://{{application_id}}-dsn.algolia.net/1/indexes"
  end
  # ...
end

Debug Attempt

I added debug logging in lib/algoliax/routes.ex to verify the compilation environment:

IO.puts("=== Algoliax.Routes Compilation ===")
IO.puts "Compiling in environment: #{Mix.env()}"
IO.puts "Time: #{DateTime.utc_now()}"

The output confirmed the issue:

=== Algoliax.Routes Compilation ===
Compiling in environment: prod

Steps to Reproduce

  1. Add a test that uses Algoliax
  2. Run the test
  3. Observe that requests are being sent to real Algolia endpoints instead of the mock server

Environment

  • Elixir version: 1.16.1
  • Erlang version: 26.2
  • Algoliax version: 0.10.0
@Kasse-Dembele
Copy link
Contributor Author

Kasse-Dembele commented Mar 26, 2025

@StephaneRob @Jordan-Kowal

@Jordan-Kowal
Copy link
Collaborator

Thanks for the heads up! It is likely related to Mix.env being evaluated during build time and not runtime, meaning the value is passed during our build, not during your runtime.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants