Dynamically modifying run-time behavior by replacing program elements with new program elements

learn more… | top users | synonyms

0
votes
0answers
31 views

How to monkey patch south handled models from plugin?

I'm making a django site with plugins. Each plugin is a simple django app depending on a main one (or even other plugins). While dependency between applications/plugins are clear to me, it should be ...
0
votes
1answer
31 views

How patch django application withous errors?

I have django project called project and try patch jsonfield in project/__init__.py: import json import jsonfield def get_prep_value(self, value): if value is None: if not self.null and ...
0
votes
2answers
35 views

What are best practices for tracing the flow of a large rails app?

If you are a new developer to a large (very large!) rails app it can be really difficult to trace through the flow of what is calling what, where a method is defined, and how to 'grok' how the whole ...
1
vote
1answer
54 views

PyPy: can't monkeypatch ast classes?

This line of code sails in PyPy: expr.__repr__ = lambda self: ast.dump(self, annotate_fields=False) TypeError: can't set attributes on type object 'expr' even though it works great in normal ...
2
votes
2answers
67 views

Is a bad practice to monkey patch a base ruby class?

I'm working on a ruby project in which we are planning to do some operations with ruby strings. Some operations are simple (like counting the number of words) and others more complex (like checking if ...
0
votes
1answer
32 views

rails autoload not picking monkey-patched class

I'm working on a Rails 3 application (specifically 3.2.13) on ruby 1.9.3-p392. In one of my controllers The "create" action can receive an image (as a ActionDispatch::Http::UploadedFile) I'm trying ...
1
vote
1answer
56 views

Is Python's monkey patching local to the current module?

In a file a.py, I have the lines: import gevent gevent.monkey.patch_all() import b # etc, etc In file b.py is it necessary to monkey patch again? Is there anything wrong with monkey patching ...
0
votes
0answers
17 views

Appengine datastore raising badValueErro on datetime, might be caused by monkeypatch

I'm getting the following error message: BadValueError: Expected datetime, got datetime.datetime(2013, 4, 19, 19, 48, 2, 566558) The error is raised in ndb's model.py line 1190, here's a snippet of ...
2
votes
2answers
37 views

How to monkeypatch builtin function datetime.datetime.now?

I'd like to make sure that datetime.datetime.now() returns a specific datetime for testing purposes, How do I do this? I've tried with pytest's monkeypatch ...
-1
votes
1answer
42 views

Python: python process isolation level when “monkey patching” classes

I have a (beginner) question. I intend to run more than one webapp (pyramid web apps) and I have a common library (let's call that base app) that may be used by both webapps and includes pyramid ...
0
votes
1answer
30 views

Get a variable from a method called on that variable without using paramaters

I'm new to javascript and have a question that's probably stupid. Context or is a method that I have written myself for the String class through monkey patching. Question I want to be able to ...
1
vote
1answer
46 views

gevent.Timeout not raised

I have a server that does "some stuff" in a section and I have a "with gevent.Timeout(5)" around that. I have some checks going on in another greenlet and through that I noticed that one of the ...
3
votes
2answers
48 views

Defining custom operators in ruby [duplicate]

I would like to be able to define custom operators. Is that possible? For example, to make a***b mean something. Is it also possible to monkey patch existing operators? To, for example, make a**b ...
0
votes
0answers
30 views

View/View subtree changed listener API

I'm trying to write a debug utility that will take certain actions (logging, screenshots, etc...) when a view in the current Activity's view hierarchy changes. Change here is anything that would ...
4
votes
1answer
41 views

How to write String monkeypatch method that will modify it

I'd want to monkeypatch Ruby's String class by providing shuffle and shuffle! methods. class String def shuffle self.split('').shuffle.join end end It returns a new string. How can I write ...
0
votes
1answer
34 views

How to patch 'open' from an imported module using Mock

I am writing some unit tests for a module I have. I need to patch open so when the functions inside the tested module calls open the mock is used instead of the real open. This code works but I think ...
4
votes
1answer
65 views

Why monkeypatching Hash.new is not working?

I am monkeypatching Ruby's Hash class. class Hash alias_method :_initialize, :initialize def initialize puts 'In my hash class' _initialize end end When I do Hash.new it works ...
0
votes
1answer
56 views

dynamically add a constraint to rails routes

I want to write a plugin that need to do a monkey patch to add a constraint on all routes defined at rails application routes.rb i try to do the following code in my monkey patch but this doesn't ...
0
votes
0answers
87 views

how to monkey patch an ambient module in node.js?

I have installed mocha globally and use it to run some tests: $> mocha test.js In the root of test.js file I want to monkey patch mocha: require('mocha').Runner.prototype.runTests = function() ...
1
vote
1answer
79 views

Monkeypatching views with Django's LiveServerTestCase

I'm attempting to write tests for the frontend behavior of my application, using Selenium. However, the pages I'm attempting to test get their data from Solr, and I don't want to spin up a Solr ...
0
votes
1answer
81 views

Monkey patch ActiveRecord's PostgreSQLAdapter method

Regarding this question, I'm trying to override the postgresql_version method defined in ActiveRecord::ConnectionAdapters::PostgreSQLAdapter that returns the PostgreSQL version: module ActiveRecord ...
0
votes
1answer
63 views

rails3 monkey-patch generator

I want to monkey-patch the rspec-rails generator to generates a _form.html_spec.rb template. I know how do that, but not where I should put this patch! What I've done: # rspec_generator_patch.rb ...
1
vote
1answer
42 views

$1 variable in a block in an aliased method

How can I create an aliased method that wraps a method that yields to a block that uses $1 variables? More specifically, I want to monkeypatch String#sub (yes, I know that it is not a good practice) ...
1
vote
1answer
17 views

Monkeypatching for a local method in Rails 3

I have a situation like below: Module Task def get(a) fetch(a) end def fetch(a) query(a) end def query(a) puts a end end and only get method is called from outside ...
1
vote
2answers
58 views

Is monkey patching PageObject::PageFactory#visit_page a good idea?

A developer recently asked if our tests could execute some javascript every time a page is opened. See bug 44299 for more details. Executing javascript is trivial: browser.execute_script('return ...
1
vote
1answer
76 views

Monkey Patch Chosen jQuery library - Chosen always undefined

I am trying to patch two functions within the Chosen jQuery library, however, no matter what I have tried to reference the original functions, console comes back with Chosen is undefined. Here is my ...
0
votes
3answers
56 views

Monkey patch Rails UniquenessValidator to support conditions

In my Rails 3.2.11 application I need the uniqueness validator to support conditions, in order to ignore soft deleted records. On GitHub I found a pull request doing that ...
3
votes
3answers
109 views

Splat (asterisk) operator on String

to write custom result of splat operator, one have to implement to_a method. Example for the String class: class String def to_a self.split // end end irb> res = *'text' => ["t", "e", ...
6
votes
3answers
377 views

Python monkey patching

I need to monkeypatch requests' Response class (version 1.0.4, current as of this question), to add additional methods. I have this code: import requests class Response(requests.models.Response): ...
1
vote
1answer
117 views

Ruby override Enumerable method

I'm trying to overwrite a method on the Enumerable module like this: module Enumerable def collect(&block) puts 'collect' super end end (Note this is a trivial example). ...
2
votes
2answers
228 views

Python monkey patch private function

I have a module with a function (call it a()) that calls another function defined in the same module (call it __b()). __b() is a function which speaks to a website via urllib2 and gets some data ...
-4
votes
1answer
78 views

Web frameworks without monkey patching? [closed]

Web frameworks such as Django and Rails rely on monkey patching to enable support for plugins. Are there web frameworks, using Python or Ruby, that support plugins without having to resort to monkey ...
1
vote
2answers
52 views

How can I monkey-patch a decorator in Django's models while testing?

I have a @memoize decorator in my models, which caches some details on the model itself, to avoid multiple database calls when called many times (especially in templates). However, since I store the ...
0
votes
1answer
154 views

Monkey patch module method

I want to alter I18n.translate method in existing project. require 'I18n' module I18n alias_method :old_translate, :translate def translate(*args) old_translate(*args) + 'blabla' end ...
0
votes
2answers
140 views

Monkey Patch Guard Cucumber Notification Formatter not working

I want to make a simple change to the Guard Cucumber Notification Formatter to pass a priority, a bit like Guard Rspec does, so that growl styling can be improved. Small thing really. I have tried ...
0
votes
1answer
202 views

CherryPy, Multiprocessing and Gevent monkey patching

I'm attempting to use a combination of cherrypy + multiprocessing (to launch worker 'processes') + gevent (to launch parallel i/o greenlets from within the worker 'processes'). It seems the easiest ...
0
votes
2answers
105 views

Extend View class in Express on Node.js

I'd like to override the View class in the Express framework, used in Node.js. I want to augment the lookup method, but I can't see a way to do this without altering the Express and App modules. I'd ...
1
vote
1answer
449 views

monkey patching one jquery ui autocomplete render item

$("selector").autocomplete({ ... }).data( "autocomplete" )._renderItem = function( ul, item ) { return $( "<li></li>" ) .data( "item.autocomplete", item ) .append( ...
4
votes
2answers
1k views

Using Celery on processes and gevent in tasks at the same time

I'd like to use Celery as a queue for my tasks so my web app could enqueue a task, return a response and the task will be processed meanwhile / someday / ... I build a kind of API, so I don't know ...
2
votes
1answer
64 views

How to create a module for a gem?

I am creating a graphics library gem. When creating a gem it seems that it is important to make sure that there are no conflicts with other gems or other code. For example, extension (monkeypatch) ...
0
votes
2answers
59 views

How to patch shutil.move to test some method

I need to test a method that would move a file. I don't want the file move operation to actually occur, I just need to know the method under test made the right call to shutil.move What would be the ...
2
votes
1answer
202 views

Ruby: Monkey patching String class

I am a little confused why the following piece of code actually works: String.instance_eval do # self is set to String [:readlink, :symlink?, :expand_path].each do |method| # self is still String ...
0
votes
0answers
78 views

Monkey patch Rails 2 to work with i18n-js

I'm trying to use the excellent i18n-js gem with a Rails 2.3 legacy application. It works perfectly out of the box but the moment I try to do any form of configuration in the i18n-js.yml such as, ...
0
votes
1answer
95 views

How can I monkey-patch another package's admin class?

One of the packages that my Django project uses has a simple admin class that looks like: class EventUpdateInline(admin.StackedInline): model = EventUpdate class EventAdmin(admin.ModelAdmin): ...
1
vote
1answer
79 views

How to use Ruby Module?

The following code works fine: class Float def round self.format.to_f end def format "%.2f" % self end end However, it seems bad practice to monkeypatch a class like Float because ...
4
votes
4answers
100 views

How do I unit test a monkey patch in Python

I have a utility method that behaves like this def my_patch_method(self): pass def patch_my_lib(): from mylib import MyClass MyClass.target_method = my_patch_method return MyClass() ...
0
votes
1answer
61 views

Why isn't this specific monkey-patching override work in my Python shell (CJSH)

I have an experimental shell at http://JonathansCorner.com/cjsh, intended among other things to reduce time finding files buried in heirarchies, and to [imperfectly] allow limitless Python ...
0
votes
2answers
75 views

Rails: add field to all forms

Is it possible to add hidden field to all form tags? I'm trying to do it in following way: module ActionView::Helpers::FormTagHelper def form_tag(url_for_options = {}, options = {}, &block) ...
2
votes
3answers
272 views

Monkey patch XMLHTTPRequest.onreadystatechange

How would go about monkey patching the XMLHTTPRequest's onreadystatechange function. I'm trying to add a function that would be called when every ajax request made from a page come back. I know this ...
0
votes
0answers
281 views

How to defer loading of twitter's bootstrap's remote modal content?

I want use bootstrap's auto-magic remote content loading via ajax in my modals, but this seems to fetch the contents at the precise moment the modal is instantiated ( source ) There's no way to ...

1 2 3 4 5