-
Notifications
You must be signed in to change notification settings - Fork 27
Tests to verify data extracted is accurate #19
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
Merged
Merged
Changes from 3 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ mod environment; | |
pub mod jsonrpc; | ||
mod manager; | ||
pub mod stdio; | ||
pub mod test; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT License. | ||
|
||
use crate::environment::get_environment_key; | ||
use pet_core::{manager::EnvManager, python_environment::PythonEnvironment, reporter::Reporter}; | ||
use std::collections::HashMap; | ||
use std::{ | ||
path::PathBuf, | ||
sync::{Arc, Mutex}, | ||
}; | ||
|
||
pub struct TestReporter { | ||
pub reported_managers: Arc<Mutex<HashMap<PathBuf, EnvManager>>>, | ||
pub reported_environments: Arc<Mutex<HashMap<PathBuf, PythonEnvironment>>>, | ||
} | ||
|
||
impl Reporter for TestReporter { | ||
fn report_manager(&self, manager: &EnvManager) { | ||
let mut reported_managers = self.reported_managers.lock().unwrap(); | ||
if !reported_managers.contains_key(&manager.executable) { | ||
reported_managers.insert(manager.executable.clone(), manager.clone()); | ||
} | ||
} | ||
|
||
fn report_environment(&self, env: &PythonEnvironment) { | ||
if let Some(key) = get_environment_key(env) { | ||
let mut reported_environments = self.reported_environments.lock().unwrap(); | ||
if !reported_environments.contains_key(key) { | ||
reported_environments.insert(key.clone(), env.clone()); | ||
} | ||
} | ||
} | ||
} | ||
|
||
pub fn create_reporter() -> TestReporter { | ||
TestReporter { | ||
reported_managers: Arc::new(Mutex::new(HashMap::new())), | ||
reported_environments: Arc::new(Mutex::new(HashMap::new())), | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
35 changes: 35 additions & 0 deletions
35
crates/pet-utils/tests/unix/headers/python3.10-dev/include/python3.10/patchlevel.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
/* Python version identification scheme. | ||
|
||
When the major or minor version changes, the VERSION variable in | ||
configure.ac must also be changed. | ||
|
||
There is also (independent) API version information in modsupport.h. | ||
*/ | ||
|
||
/* Values for PY_RELEASE_LEVEL */ | ||
#define PY_RELEASE_LEVEL_ALPHA 0xA | ||
#define PY_RELEASE_LEVEL_BETA 0xB | ||
#define PY_RELEASE_LEVEL_GAMMA 0xC /* For release candidates */ | ||
#define PY_RELEASE_LEVEL_FINAL 0xF /* Serial should be 0 here */ | ||
/* Higher for patch releases */ | ||
|
||
/* Version parsed out into numeric values */ | ||
/*--start constants--*/ | ||
#define PY_MAJOR_VERSION 3 | ||
#define PY_MINOR_VERSION 10 | ||
#define PY_MICRO_VERSION 14 | ||
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL | ||
#define PY_RELEASE_SERIAL 0 | ||
|
||
/* Version as a string */ | ||
#define PY_VERSION "3.10.14+" | ||
/*--end constants--*/ | ||
|
||
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. | ||
Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ | ||
#define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \ | ||
(PY_MINOR_VERSION << 16) | \ | ||
(PY_MICRO_VERSION << 8) | \ | ||
(PY_RELEASE_LEVEL << 4) | \ | ||
(PY_RELEASE_SERIAL << 0)) |
Empty file.
Empty file.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added back, I found it useful to have this as some default state.
@karthiknadig /cc