Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add is_simple_callable tests
  • Loading branch information
Ryan P Kilby committed Sep 22, 2016
commit adcf6536e75272649da1d8e5a8b5ba7926e33147
62 changes: 62 additions & 0 deletions tests/test_fields.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import datetime
import os
import re
import unittest
import uuid
from decimal import Decimal

Expand All @@ -11,6 +12,67 @@

import rest_framework
from rest_framework import serializers
from rest_framework.fields import is_simple_callable

try:
import typings
except ImportError:
typings = False


# Tests for helper functions.
# ---------------------------

class TestIsSimpleCallable:

def test_method(self):
class Foo:
@classmethod
def classmethod(cls):
pass

def valid(self):
pass

def valid_kwargs(self, param='value'):
pass

def invalid(self, param):
pass

assert is_simple_callable(Foo.classmethod)

# unbound methods
assert not is_simple_callable(Foo.valid)
assert not is_simple_callable(Foo.valid_kwargs)
assert not is_simple_callable(Foo.invalid)

# bound methods
assert is_simple_callable(Foo().valid)
assert is_simple_callable(Foo().valid_kwargs)
assert not is_simple_callable(Foo().invalid)

def test_function(self):
def simple():
pass

def valid(param='value', param2='value'):
pass

def invalid(param, param2='value'):
pass

assert is_simple_callable(simple)
assert is_simple_callable(valid)
assert not is_simple_callable(invalid)

@unittest.skipUnless(typings, 'requires python 3.5')
def test_type_annotation(self):
# The annotation will otherwise raise a syntax error in python < 3.5
exec("def valid(param: str='value'): pass", locals())
valid = locals()['valid']

assert is_simple_callable(valid)


# Tests for field keyword arguments and core functionality.
Expand Down